Merge pull request #65631 from bruvzg/fix_ctrl_f

Fix Ctrl/Cmd+F always processed by the asset library, instead of script editor / help.
This commit is contained in:
Rémi Verschelde 2022-09-11 00:26:23 +02:00 committed by GitHub
commit c658fa8b77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -648,7 +648,7 @@ void EditorAssetLibrary::shortcut_input(const Ref<InputEvent> &p_event) {
const Ref<InputEventKey> key = p_event;
if (key.is_valid() && key->is_pressed()) {
if (key->is_match(InputEventKey::create_reference(KeyModifierMask::CMD_OR_CTRL | Key::F))) {
if (key->is_match(InputEventKey::create_reference(KeyModifierMask::CMD_OR_CTRL | Key::F)) && is_visible_in_tree()) {
filter->grab_focus();
filter->select_all();
accept_event();