diff --git a/thunar/thunar-list-model.c b/thunar/thunar-list-model.c index 8416739bc56432390fc2e2721564f24286ad7d67..125bace043aa0aee78ac33129e9405a210e2ef45 100644 --- a/thunar/thunar-list-model.c +++ b/thunar/thunar-list-model.c @@ -2381,8 +2381,10 @@ thunar_list_model_set_folder (ThunarListModel *store, { g_object_ref (G_OBJECT (folder)); - /* get the already loaded files or search for files matching the search_query */ - if (search_query == NULL) + /* get the already loaded files or search for files matching the search_query + * don't start searching if the query is empty, that would be a waste of resources + */ + if (search_query == NULL || strlen (search_query) == 0) { files = thunar_folder_get_files (folder); }