diff options
author | George Hazan <ghazan@miranda.im> | 2020-01-10 13:51:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-01-10 13:51:10 +0300 |
commit | 0edbc72c19b22f2ae9908cb204601796469f9a4f (patch) | |
tree | f4ce3c3c5577891a10523bf37b6d44871db233f1 /src | |
parent | 82e580ccd9e7e9428672b9bc013278c57caaceca (diff) |
fixes #2157 (database drivers have unload checkbox in Options - Plugins)
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/pluginopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/pluginopts.cpp b/src/mir_app/src/pluginopts.cpp index 40f7d01b89..d1ea1cbaf1 100644 --- a/src/mir_app/src/pluginopts.cpp +++ b/src/mir_app/src/pluginopts.cpp @@ -331,7 +331,7 @@ public: // set checkboxes for all loaded plugins
for (auto &it : arPluginList)
- if (isPluginOnWhiteList(it->fileName) && it->hInst)
+ if (it->bWasChecked && isPluginOnWhiteList(it->fileName) && it->hInst)
m_plugList.SetItemState(it->iRow, 0x2000, LVIS_STATEIMAGEMASK);
// sort out the headers
|