diff options
author | George Hazan <george.hazan@gmail.com> | 2023-08-04 12:37:29 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-08-04 12:37:29 +0300 |
commit | 302de47b582362f3f27e62ce77657faea7a78e22 (patch) | |
tree | bb4c586b054d4a0585f8bb544d2d0492d772f463 | |
parent | ecfb490f1535aaf70d80aca4dfeee47de99f28f3 (diff) |
fixes #3608 (NewStory: рандомные проблемы)
-rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index 2443370197..e97641f381 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -1037,7 +1037,7 @@ INT_PTR svcShowNewstory(WPARAM hContact, LPARAM) HWND hwnd = (HWND)WindowList_Find(g_hNewstoryWindows, hContact); if (!hwnd) { auto *pDlg = new CHistoryDlg(hContact); - pDlg->Create(); + pDlg->Show(); hwnd = pDlg->GetHwnd(); } |