diff options
Diffstat (limited to 'plugins/NewStory/src/history_control.cpp')
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 690e83ce9e..c005d18728 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -414,6 +414,13 @@ LRESULT CALLBACK NewstoryListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM data->redrawTimer.Start(100); break; + case NSM_CLEAR: + data->items.clear(); + + data->redrawTimer.Stop(); + data->redrawTimer.Start(100); + break; + case NSM_GETARRAY: return (LRESULT)&data->items; |