SEBWIN-423: Ensured that AltGr does not trigger termination.
This commit is contained in:
parent
6d478660b5
commit
e5f2c4f33f
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace SafeExamBrowser.UserInterface.Shared.Activators
|
|||
break;
|
||||
}
|
||||
|
||||
if (Q && (LeftCtrl || RightCtrl) && changed)
|
||||
if (Q && (LeftCtrl || RightCtrl) && changed && !modifier.HasFlag(KeyModifier.Alt))
|
||||
{
|
||||
logger.Debug("Detected termination sequence.");
|
||||
Activated?.Invoke();
|
||||
|
|
Loading…
Add table
Reference in a new issue