summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2016-03-03 11:12:58 +0100
committerCarlos Soriano <csoriano@gnome.org>2016-03-03 11:25:33 +0100
commit298cdcce8b44779dff943e68ab4c99ec100247ae (patch)
tree612a94adb775d15a5fcddd7a425c16b4809aac5d
parent07be821be2ec92ffe29ffb4677f6c33b870bbbff (diff)
downloadnautilus-298cdcce8b44779dff943e68ab4c99ec100247ae.tar.gz
files-view: select first file even when directory not fully loaded
Currently we were waiting until the view was fully loaded to select the first file. This is fine when only navigating. However, for search, we actually want to select the first file in order to allow the user to open right away the most relevant file. Let's see if this brings problems on icons jumping in large directories, but I hope it doesn't in the most common cases. https://bugzilla.gnome.org/show_bug.cgi?id=762595
-rw-r--r--src/nautilus-files-view.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index f91885dc8..8043a8433 100644
--- a/src/nautilus-files-view.c
+++ b/src/nautilus-files-view.c
@@ -3654,6 +3654,9 @@ display_pending_files (NautilusFilesView *view)
process_new_files (view);
process_old_files (view);
+ if (!nautilus_files_view_get_selection (NAUTILUS_VIEW (view)))
+ nautilus_files_view_select_first (view);
+
if (view->details->model != NULL
&& nautilus_directory_are_all_files_seen (view->details->model)
&& g_hash_table_size (view->details->non_ready_files) == 0) {