SEBWIN-423: Ensured that AltGr does not trigger termination.

This commit is contained in:
Damian Büchel 2020-09-22 16:55:31 +02:00
parent 6d478660b5
commit e5f2c4f33f

View file

@ -55,7 +55,7 @@ namespace SafeExamBrowser.UserInterface.Shared.Activators
break; break;
} }
if (Q && (LeftCtrl || RightCtrl) && changed) if (Q && (LeftCtrl || RightCtrl) && changed && !modifier.HasFlag(KeyModifier.Alt))
{ {
logger.Debug("Detected termination sequence."); logger.Debug("Detected termination sequence.");
Activated?.Invoke(); Activated?.Invoke();