summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-03-26 13:12:45 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-03-26 13:12:45 +0300
commitdc314abbaa97a162a10d3bd0a16c1b12446f0128 (patch)
tree44642dc089e4eb3a5d25f05745c9f5884155f05e
parentd8c9835b36be01fbd5584f52a1ee1c1ba66b61b0 (diff)
fixes #4277 (Already read messages are displayed again and again in the SysTray)
-rw-r--r--src/core/stdmsg/src/tabs.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/stdmsg/src/tabs.cpp b/src/core/stdmsg/src/tabs.cpp
index a3b06fb379..57974adff4 100644
--- a/src/core/stdmsg/src/tabs.cpp
+++ b/src/core/stdmsg/src/tabs.cpp
@@ -245,6 +245,7 @@ CMsgDialog* CTabbedWindow::AddPage(MCONTACT hContact, wchar_t *pwszText, int iNo
Create();
pDlg->SetParent(m_hwnd);
pDlg->Create();
+ SendMessage(pDlg->GetHwnd(), WM_SHOWWINDOW, 1, 0);
Show(iNoActivate ? SW_SHOWNOACTIVATE : SW_SHOW);
}