Ver código fonte

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

Jan Lupčík 7 meses atrás
pai
commit
0314354d0a
1 arquivos alterados com 1 adições e 1 exclusões
  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;