mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[WINLOGON] Ignore the CTRL+SHIFT+ESC hotkey when the session is not in the logged-on state
Should fix CORE-13478
This commit is contained in:
parent
47567abf27
commit
46dcab7ab1
1 changed files with 2 additions and 1 deletions
|
@ -1328,7 +1328,8 @@ SASWindowProc(
|
|||
case MAKELONG(MOD_CONTROL | MOD_SHIFT, VK_ESCAPE):
|
||||
{
|
||||
TRACE("SAS: CONTROL+SHIFT+ESCAPE\n");
|
||||
DoGenericAction(Session, WLX_SAS_ACTION_TASKLIST);
|
||||
if (Session->LogonState == STATE_LOGGED_ON)
|
||||
DoGenericAction(Session, WLX_SAS_ACTION_TASKLIST);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue