summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Borges <felipeborges@gnome.org>2016-10-14 12:53:45 +0200
committerErnestas Kulik <ernestask@src.gnome.org>2016-10-16 13:00:56 +0300
commit3c4a3a08b67b99272430f922032dce9265f2843f (patch)
tree30b00b0b5f21347790670a9c6e0bb826ae21062b
parent54ed1d6c1697b98737b65fe777d5bbbccd70953b (diff)
downloadnautilus-3c4a3a08b67b99272430f922032dce9265f2843f.tar.gz
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
-rw-r--r--src/nautilus-files-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index c6eab15e7..97bff409d 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");