summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-22 17:39:23 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-04-22 17:39:23 +0300
commite8af6bd8d639dc9146cd8777d2669fc22bb4e58a (patch)
treed8d31898338ec5f8d57b95ddca95cab47423bc16 /src
parent98b7e117f59526e5c6e057909dbdf49415cf8db2 (diff)
let's allow protocols to be loaded / unloaded on the fly
Diffstat (limited to 'src')
-rw-r--r--src/mir_app/src/pluginopts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/pluginopts.cpp b/src/mir_app/src/pluginopts.cpp
index 2776b4635d..8e75ac0eb4 100644
--- a/src/mir_app/src/pluginopts.cpp
+++ b/src/mir_app/src/pluginopts.cpp
@@ -96,7 +96,7 @@ static BOOL dialogListPlugins(WIN32_FIND_DATA *fd, wchar_t *path, WPARAM, LPARAM
it.mask = LVIF_PARAM | LVIF_IMAGE;
it.iImage = (hInst != nullptr) ? 2 : 3;
bool bNoCheckbox = (dat->flags & STATIC_PLUGIN) != 0;
- if (bNoCheckbox || hasMuuid(pi, MIID_CLIST) || hasMuuid(pi, MIID_PROTOCOL))
+ if (bNoCheckbox || hasMuuid(pi, MIID_CLIST))
it.iImage += 2;
it.lParam = (LPARAM)dat;
int iRow = ListView_InsertItem(hwndList, &it);