diff options
Diffstat (limited to 'plugins/NewStory/src/history_dlg.cpp')
-rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index fb40f3d6a8..0e23196044 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -877,6 +877,16 @@ public: return result; } + MSG message = { m_hwnd, msg, wParam, lParam }; + switch (Hotkey_Check(&message, MODULENAME)) { + case HOTKEY_SEEK_FORWARD: + btnFindNext.Click(); + break; + case HOTKEY_SEEK_BACK: + btnFindPrev.Click(); + break; + } + switch (msg) { case WM_CHARTOITEM: if (!((GetKeyState(VK_CONTROL) & 0x80) || (GetKeyState(VK_MENU) & 0x80))) { |