[nautilus] files-view: Use <control>Return to open selected folder in new window



commit 3c4a3a08b67b99272430f922032dce9265f2843f
Author: Felipe Borges <felipeborges gnome org>
Date:   Fri Oct 14 12:53:45 2016 +0200

    files-view: Use <control>Return to open selected folder in new window
    
    It makes more sense than the complex <control><shift>w accel.
    This is the default behavior for launching a new instance of an
    opened application in GNOME Shell.
    Currently, pressing "Return/Enter" with a selected folder, opens
    it. In doing so, using the <control> modifier should open the
    selected folder in a new window.
    This widespread behavior is also related to <control> + click for
    opening links in a web browser.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=772925

 src/nautilus-files-view.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index c6eab15..97bff40 100644
--- a/src/nautilus-files-view.c
+++ b/src/nautilus-files-view.c
@@ -9247,7 +9247,7 @@ nautilus_files_view_init (NautilusFilesView *view)
     /* Selection menu */
     nautilus_application_set_accelerators (app, "view.open-with-default-application", open_accels);
     nautilus_application_set_accelerator (app, "view.open-item-new-tab", "<shift><control>t");
-    nautilus_application_set_accelerator (app, "view.open-item-new-window", "<shift><control>w");
+    nautilus_application_set_accelerator (app, "view.open-item-new-window", "<control>Return");
     nautilus_application_set_accelerator (app, "view.move-to-trash", "Delete");
     nautilus_application_set_accelerator (app, "view.delete-from-trash", "Delete");
     nautilus_application_set_accelerator (app, "view.delete-permanently-shortcut", "<shift>Delete");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]