diff options
Diffstat (limited to 'plugins/NewStory/src/options.cpp')
| -rw-r--r-- | plugins/NewStory/src/options.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/NewStory/src/options.cpp b/plugins/NewStory/src/options.cpp index f6c681bda2..12c0581688 100644 --- a/plugins/NewStory/src/options.cpp +++ b/plugins/NewStory/src/options.cpp @@ -5,13 +5,15 @@ class CGeneralOptsDlg : public CDlgBase { - CCtrlCheck chkGrouping; + CCtrlCheck chkGrouping, chkVScroll; public: CGeneralOptsDlg() : CDlgBase(g_plugin, IDD_OPT_ADVANCED), + chkVScroll(this, IDC_VSCROLL), chkGrouping(this, IDC_GROUPING) { + CreateLink(chkVScroll, g_plugin.bOptVScroll); CreateLink(chkGrouping, g_bOptGrouping); } |
