diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-05 13:42:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-05 13:42:56 +0300 |
commit | 85babb626b7a2a9f9e09abecc881df6e5beefc2d (patch) | |
tree | 605be09c73d6ba32eca053d168319351a6b84be0 /plugins/PluginUpdater/src | |
parent | f34beb2e4e18dc1a99b3287c9d57c99bae7251af (diff) |
PluginUpdater: wrong control ids in popup options dialog
Diffstat (limited to 'plugins/PluginUpdater/src')
-rw-r--r-- | plugins/PluginUpdater/src/Options.cpp | 6 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/version.h | 2 |
2 files changed, 4 insertions, 4 deletions
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 <stdver.h> |