Merge pull request #60768 from Calinou/3d-editor-numpad-emulation-use-physical-keys-3.x
Use physical keys for numpad emulation in the 3D editor
This commit is contained in:
commit
80244cb844
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue