Focus filter LineEdit after Theme Type dialog popup

This commit is contained in:
Haoyu Qiu 2022-04-07 17:14:53 +08:00
parent 6d9cbcb05f
commit f196532de6

View file

@ -1947,7 +1947,6 @@ ThemeItemEditorDialog::ThemeItemEditorDialog() {
void ThemeTypeDialog::_dialog_about_to_show() { void ThemeTypeDialog::_dialog_about_to_show() {
add_type_filter->set_text(""); add_type_filter->set_text("");
add_type_filter->grab_focus();
_update_add_type_options(); _update_add_type_options();
} }
@ -2027,14 +2026,13 @@ void ThemeTypeDialog::_notification(int p_what) {
connect("about_to_show", this, "_dialog_about_to_show"); connect("about_to_show", this, "_dialog_about_to_show");
FALLTHROUGH; FALLTHROUGH;
} }
case NOTIFICATION_THEME_CHANGED: { case NOTIFICATION_THEME_CHANGED: {
_update_add_type_options(); _update_add_type_options();
} break; } break;
case NOTIFICATION_VISIBILITY_CHANGED: { case NOTIFICATION_POST_POPUP: {
if (is_visible()) {
add_type_filter->grab_focus(); add_type_filter->grab_focus();
}
} break; } break;
} }
} }