diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-18 17:16:13 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-18 17:16:13 +0300 |
commit | 9526839551e4958e8064d4b29ee45460597af9ec (patch) | |
tree | 251c47cd1ef5096c7dd5dd180970e8b0bd0e0a2f /plugins | |
parent | 1e18ce7298c8815e89cc258d6e4a6a629a0b0bb8 (diff) |
fixes #4683 (NEN: опция "не показывать вспл. окно, если окно сообщений открыто" не расценивает неактивное или свёрнутое окно как открытое)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewEventNotify/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewEventNotify/src/main.cpp b/plugins/NewEventNotify/src/main.cpp index dd4205ea2e..ad633f4da5 100644 --- a/plugins/NewEventNotify/src/main.cpp +++ b/plugins/NewEventNotify/src/main.cpp @@ -146,7 +146,7 @@ int CheckMsgWnd(MCONTACT hContact) {
MessageWindowData mwd;
if (!Srmm_GetWindowData(hContact, mwd))
- if (mwd.hwndWindow != nullptr && (mwd.uState & MSG_WINDOW_STATE_FOCUS))
+ if (mwd.hwndWindow != nullptr && (mwd.uState & MSG_WINDOW_STATE_EXISTS))
return 1;
return 0;
|