diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-25 15:29:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-25 15:29:07 +0000 |
commit | 68c8fc819ebac23a678bb07ad33f3f93b4c75f89 (patch) | |
tree | 61700385219e6fa2ab93e3bb4234b73655affb5e /src/core/stdaway | |
parent | e7bd5c948183c8220a5b4d319528d5a7a2db9ba0 (diff) |
no hotkey anymore for the forced status window popup
git-svn-id: http://svn.miranda-ng.org/main/trunk@2839 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdaway')
-rw-r--r-- | src/core/stdaway/sendmsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdaway/sendmsg.cpp b/src/core/stdaway/sendmsg.cpp index 763d3a41b1..9f6558fee5 100644 --- a/src/core/stdaway/sendmsg.cpp +++ b/src/core/stdaway/sendmsg.cpp @@ -344,7 +344,7 @@ static int StatusModeChange(WPARAM wParam, LPARAM lParam) if (GetStatusModeByte(statusMode, "Ignore"))
ChangeAllProtoMessages(szProto, statusMode, NULL);
- else if (bScreenSaverRunning || ( !GetAsyncKeyState(VK_CONTROL) && GetStatusModeByte(statusMode, "NoDlg", true))) {
+ else if (bScreenSaverRunning || GetStatusModeByte(statusMode, "NoDlg", true)) {
TCHAR *msg = GetAwayMessage(statusMode, szProto);
ChangeAllProtoMessages(szProto, statusMode, msg);
mir_free(msg);
|