diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-24 15:27:29 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-24 15:27:29 +0300 |
commit | d2feb899212b71faa50958c3bdd53ef3214c5b56 (patch) | |
tree | 2f61658d1a1e6b53f1f5db6fb87209a43c88efe1 /src | |
parent | 9774715b1914ac65ada1211322bfd080af694af9 (diff) |
fixes #4290 completely
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/srmm_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/srmm_util.cpp b/src/mir_app/src/srmm_util.cpp index b9e4d4c4ff..43e90992eb 100644 --- a/src/mir_app/src/srmm_util.cpp +++ b/src/mir_app/src/srmm_util.cpp @@ -107,7 +107,7 @@ MIR_APP_DLL(int) Srmm_GetWindowData(MCONTACT hContact, MessageWindowData &mwd) mwd.uState = MSG_WINDOW_STATE_EXISTS;
if (IsWindowVisible(hwnd))
mwd.uState |= MSG_WINDOW_STATE_VISIBLE;
- if (GetForegroundWindow() == hwnd)
+ if (GetForegroundWindow() == hwnd || GetForegroundWindow() == GetParent(hwnd))
mwd.uState |= MSG_WINDOW_STATE_FOCUS;
if (IsIconic(hwnd))
mwd.uState |= MSG_WINDOW_STATE_ICONIC;
|