mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 22:49:12 +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,6 +1328,7 @@ SASWindowProc(
|
||||||
case MAKELONG(MOD_CONTROL | MOD_SHIFT, VK_ESCAPE):
|
case MAKELONG(MOD_CONTROL | MOD_SHIFT, VK_ESCAPE):
|
||||||
{
|
{
|
||||||
TRACE("SAS: CONTROL+SHIFT+ESCAPE\n");
|
TRACE("SAS: CONTROL+SHIFT+ESCAPE\n");
|
||||||
|
if (Session->LogonState == STATE_LOGGED_ON)
|
||||||
DoGenericAction(Session, WLX_SAS_ACTION_TASKLIST);
|
DoGenericAction(Session, WLX_SAS_ACTION_TASKLIST);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue