Browse Source

Fix text content disappearing when Ctrl + Alt + A key combination is used (#773)

Jan Lupčík 7 months ago
parent
commit
0314354d0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Core/Elements/WidgetTextInput.cpp

+ 1 - 1
Source/Core/Elements/WidgetTextInput.cpp

@@ -593,7 +593,7 @@ void WidgetTextInput::ProcessEvent(Event& event)
 
 		case Input::KI_A:
 		{
-			if (ctrl)
+			if (ctrl && !alt)
 				Select();
 		}
 		break;