From 85babb626b7a2a9f9e09abecc881df6e5beefc2d Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 5 Jan 2021 13:42:56 +0300 Subject: PluginUpdater: wrong control ids in popup options dialog --- plugins/PluginUpdater/src/Options.cpp | 6 +++--- plugins/PluginUpdater/src/version.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/PluginUpdater/src/Options.cpp b/plugins/PluginUpdater/src/Options.cpp index 936551f5c6..24c379b0e5 100644 --- a/plugins/PluginUpdater/src/Options.cpp +++ b/plugins/PluginUpdater/src/Options.cpp @@ -382,8 +382,8 @@ public: btnPreview(this, IDC_PREVIEW), chkInfo(this, IDC_INFO_MESSAGES), chkErrors(this, IDC_ERRORS), - chOwnColors(this, IDC_USEWINCOLORS), - chkWinColors(this, IDC_USEOWNCOLORS), + chOwnColors(this, IDC_USEOWNCOLORS), + chkWinColors(this, IDC_USEWINCOLORS), chkPopupColors(this, IDC_USEPOPUPCOLORS) { btnPreview.OnClick = Callback(this, &CPopupOptDlg::onClick_Preview); @@ -404,7 +404,7 @@ public: else if (g_plugin.PopupDefColors == byCOLOR_WINDOWS) chOwnColors.SetState(true); else if (g_plugin.PopupDefColors == byCOLOR_POPUP) - CheckDlgButton(m_hwnd, IDC_USEPOPUPCOLORS, BST_CHECKED); + chkPopupColors.SetState(true); for (auto &it : PopupsList) { SendDlgItemMessage(m_hwnd, it.ctrl2, CPM_SETCOLOUR, 0, it.colorText); diff --git a/plugins/PluginUpdater/src/version.h b/plugins/PluginUpdater/src/version.h index 49669c91f9..5073bd6ee2 100644 --- a/plugins/PluginUpdater/src/version.h +++ b/plugins/PluginUpdater/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0 #define __MINOR_VERSION 2 #define __RELEASE_NUM 0 -#define __BUILD_NUM 9 +#define __BUILD_NUM 10 #include -- cgit v1.2.3