From 7a5371da53383fede5a47daf78a7300d2d42a154 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 24 Apr 2024 20:47:24 +0300 Subject: =?UTF-8?q?fixes=20#4377=20(=D0=9F=D1=80=D0=B8=20=D0=B2=D0=B3?= =?UTF-8?q?=D1=80=D1=83=D0=B6=D0=B5=D0=BD=D0=B8=D0=B8=20Scriver=20=D0=B2?= =?UTF-8?q?=20=D1=81=D0=BF=D0=B8=D1=81=D0=BA=D0=B5=20=D0=B6=D1=83=D1=80?= =?UTF-8?q?=D0=BD=D0=B0=D0=BB=D0=BE=D0=B2=20=D0=BF=D0=BE=D1=8F=D0=B2=D0=BB?= =?UTF-8?q?=D1=8F=D0=B5=D1=82=D1=81=D1=8F=20StdMsg)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mir_app/src/pluginopts.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mir_app/src/pluginopts.cpp b/src/mir_app/src/pluginopts.cpp index 0f95243159..761f55b85a 100644 --- a/src/mir_app/src/pluginopts.cpp +++ b/src/mir_app/src/pluginopts.cpp @@ -376,6 +376,8 @@ public: CMStringW bufRestart(TranslateT("Miranda NG must be restarted to apply changes for these plugins:")); bufRestart.AppendChar('\n'); + // block standard plugins' loading, because LoadStdPlugins() will be called for all missing plugins in the end of this cycle + g_bLoadStd = false; for (int iRow = 0; iRow != -1;) { wchar_t buf[1024]; m_plugList.GetItemText(iRow, 0, buf, _countof(buf)); @@ -421,6 +423,7 @@ public: iRow = m_plugList.GetNextItem(iRow, LVNI_ALL); } + g_bLoadStd = true; LoadStdPlugins(); -- cgit v1.2.3