2
0
Эх сурвалжийг харах

Use physical keys for numpad emulation in the 3D editor

This makes numpad emulation work on non-QWERTY keyboard layouts
more reliably.
Hugo Locurcio 3 жил өмнө
parent
commit
aaf8424d7e

+ 1 - 1
editor/plugins/spatial_editor_plugin.cpp

@@ -2042,7 +2042,7 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
 		}
 
 		if (EditorSettings::get_singleton()->get("editors/3d/navigation/emulate_numpad")) {
-			const uint32_t code = k->get_scancode();
+			const uint32_t code = k->get_physical_scancode();
 			if (code >= KEY_0 && code <= KEY_9) {
 				k->set_scancode(code - KEY_0 + KEY_KP_0);
 			}