You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
clear filter input in Project Settings when opening Layers
This commit is contained in:
@@ -45,7 +45,7 @@ void ProjectSettingsEditor::connect_filesystem_dock_signals(FileSystemDock *p_fs
|
||||
localization_editor->connect_filesystem_dock_signals(p_fs_dock);
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::popup_project_settings() {
|
||||
void ProjectSettingsEditor::popup_project_settings(bool p_clear_filter) {
|
||||
// Restore valid window bounds or pop up at default size.
|
||||
Rect2 saved_size = EditorSettings::get_singleton()->get_project_metadata("dialog_bounds", "project_settings", Rect2());
|
||||
if (saved_size != Rect2()) {
|
||||
@@ -62,6 +62,10 @@ void ProjectSettingsEditor::popup_project_settings() {
|
||||
autoload_settings->update_autoload();
|
||||
plugin_settings->update_plugins();
|
||||
import_defaults_editor->clear();
|
||||
|
||||
if (p_clear_filter) {
|
||||
search_box->clear();
|
||||
}
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::queue_save() {
|
||||
|
||||
Reference in New Issue
Block a user