summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-01-22 20:46:53 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-01-22 20:46:53 +0300
commitdc907e37f5baf3f590700394d4e779363c0c0a7f (patch)
treefbd072ce16d8f4691061d25efe5a0d9a319b4264 /src/core
parentbb9b2988349e923f78ec48badd642ac744b2a9c1 (diff)
fixes #2710 (StdClist: Option: "Don't move offline user to bottom" does not save setting properly)
Diffstat (limited to 'src/core')
-rw-r--r--src/core/stdclist/src/clistopts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdclist/src/clistopts.cpp b/src/core/stdclist/src/clistopts.cpp
index 4d76861bee..9f7ee3c2b6 100644
--- a/src/core/stdclist/src/clistopts.cpp
+++ b/src/core/stdclist/src/clistopts.cpp
@@ -91,7 +91,7 @@ public:
{
g_plugin.setByte("SortByStatus", g_bSortByStatus = sortByStatus.GetState());
g_plugin.setByte("SortByProto", g_bSortByProto = sortByProto.GetState());
- g_plugin.getByte("NoOfflineBottom", g_bNoOfflineBottom = chkOfflineBottom.GetState());
+ g_plugin.setByte("NoOfflineBottom", g_bNoOfflineBottom = chkOfflineBottom.GetState());
g_plugin.setByte("Tray1Click", IsDlgButtonChecked(m_hwnd, IDC_ONECLK));
g_plugin.setByte("AlwaysStatus", IsDlgButtonChecked(m_hwnd, IDC_ALWAYSSTATUS));
g_plugin.setByte("AlwaysMulti", !IsDlgButtonChecked(m_hwnd, IDC_ALWAYSMULTI));