diff options
author | George Hazan <ghazan@miranda.im> | 2020-04-07 13:21:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-04-07 13:21:02 +0300 |
commit | 6c366338a904726042ffb627a3d1b96dce1d07a5 (patch) | |
tree | 0d5cee99890a70f6380b6eab66ff5f0eaabc55b5 /plugins | |
parent | 96edfd48017a250c718ebe0c8fa1b66cc79c83bd (diff) |
fxies #2305 (NewStory: не работает переход в настройки шаблонов)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewStory/src/history.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewStory/src/history.cpp b/plugins/NewStory/src/history.cpp index 9497caa130..f14ce4b38b 100644 --- a/plugins/NewStory/src/history.cpp +++ b/plugins/NewStory/src/history.cpp @@ -773,11 +773,11 @@ INT_PTR CALLBACK HistoryDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara // break; case ID_LOGOPTIONS_OPTIONS: - g_plugin.openOptions(nullptr, L"Newstory", L"General"); + g_plugin.openOptions(L"History", L"Newstory" /*, L"General" */); break; case ID_LOGOPTIONS_TEMPLATES: - g_plugin.openOptions(nullptr, L"Newstory", L"Templates"); + g_plugin.openOptions(L"History", L"Newstory" /* , L"Templates" */ ); break; } PostMessage(hwnd, WM_SIZE, 0, 0); |