1
0
Fork 0

Merge pull request #112831 from ryevdokimov/fix-erased-editor-shortcuts

Fix modified editor shortcuts being erased
This commit is contained in:
Thaddeus Crews 2025-11-17 10:56:50 -06:00
commit dd3df2a075
No known key found for this signature in database
GPG Key ID: 8C6E5FEB5FC03CCC
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ bool EditorSettings::_set_only(const StringName &p_name, const Variant &p_value)
Ref<Shortcut> sc;
sc.instantiate();
sc->set_events(shortcut_events);
add_shortcut(shortcut_name, sc);
_add_shortcut_default(shortcut_name, sc);
}
return false;