Unverified Commit e9b854b7 by Rémi Verschelde Committed by GitHub

Merge pull request #26033 from karliss/project-import

Fix project opening while filter is applied.
parents 29fd942d bb3429c1
......@@ -1422,6 +1422,7 @@ void ProjectManager::_on_projects_updated() {
}
void ProjectManager::_on_project_created(const String &dir) {
project_filter->clear();
bool has_already = false;
for (int i = 0; i < scroll_children->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_children->get_child(i));
......@@ -2235,3 +2236,9 @@ ProjectListFilter::ProjectListFilter() {
has_search_box = false;
}
void ProjectListFilter::clear() {
if (has_search_box) {
search_box->clear();
}
}
......@@ -154,6 +154,7 @@ public:
FilterOption get_filter_option();
void set_filter_option(FilterOption);
ProjectListFilter();
void clear();
};
#endif // PROJECT_MANAGER_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment