Browse Source

Visual test: Handle numpad enter in find field

Michael Ragazzon 2 years ago
parent
commit
b824df5ac2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tests/Source/VisualTests/TestNavigator.cpp

+ 1 - 1
Tests/Source/VisualTests/TestNavigator.cpp

@@ -232,7 +232,7 @@ void TestNavigator::ProcessEvent(Rml::Event& event)
 				UpdateGoToText();
 			}
 		}
-		else if (key_identifier == Rml::Input::KI_RETURN)
+		else if (key_identifier == Rml::Input::KI_RETURN || key_identifier == Rml::Input::KI_NUMPADENTER)
 		{
 			element_filter_input->Blur();
 		}