diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-12-05 09:06:08 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-12-05 09:06:08 +0000 |
commit | e5483a07e282dbc6be8ee498ff6ce676ee0ce2ed (patch) | |
tree | af48954e2d87dde6090310e00e01175bdbdaa612 /plugins | |
parent | ad7fd84405d4894ceb69d02cb5f00b193ef5ca15 (diff) |
"DualRowMode" setting wasn't saved in DB (reported by Andrzej Aleksiejuk)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2650 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_nicer/src/clcopts.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Clist_nicer/src/clcopts.cpp b/plugins/Clist_nicer/src/clcopts.cpp index 5f397fccdf..056c468d14 100644 --- a/plugins/Clist_nicer/src/clcopts.cpp +++ b/plugins/Clist_nicer/src/clcopts.cpp @@ -474,6 +474,7 @@ static INT_PTR CALLBACK DlgProcDspAdvanced(HWND hwndDlg, UINT msg, WPARAM wParam cfg::dat.dualRowMode = (BYTE)SendDlgItemMessage(hwndDlg, IDC_DUALROWMODE, CB_GETCURSEL, 0, 0);
if (cfg::dat.dualRowMode == CB_ERR)
cfg::dat.dualRowMode = 0;
+ cfg::writeByte("CLC", "DualRowMode", cfg::dat.dualRowMode);
return TRUE;
}
break;
|