summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2015-01-27 17:49:07 +0100
committerCosimo Cecchi <cosimoc@gnome.org>2015-02-03 09:26:31 -0800
commit036152fc2ac6ed16c4257d610cfc9b88028964a3 (patch)
treefdb84dc8ee73003f352d251a6e3e8715e0350785
parent736c3ed36cef85c5e185385265dcab0bb63e0d55 (diff)
downloadnautilus-036152fc2ac6ed16c4257d610cfc9b88028964a3.tar.gz
nautilus-view: Change move to trash accelerator
Now that we have an in app notification, the user has a feedback if they push Delete key as an accident. So we no longer need to make the move to trash action difficult to do. So change the accelerator of move to trash from <shift>Delete to just Delete https://bugzilla.gnome.org/show_bug.cgi?id=743630
-rw-r--r--src/nautilus-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-view.c b/src/nautilus-view.c
index a5d12d2dd..ad68115ef 100644
--- a/src/nautilus-view.c
+++ b/src/nautilus-view.c
@@ -7510,7 +7510,7 @@ nautilus_view_init (NautilusView *view)
nautilus_application_add_accelerator (app, "view.open-with-default-application", "<control>o");
nautilus_application_add_accelerator (app, "view.open-item-new-tab", "<shift><control>t");
nautilus_application_add_accelerator (app, "view.open-item-new-window", "<shift><control>w");
- nautilus_application_add_accelerator (app, "view.move-to-trash", "<control>Delete");
+ nautilus_application_add_accelerator (app, "view.move-to-trash", "Delete");
nautilus_application_add_accelerator (app, "view.delete", "<shift>Delete");
nautilus_application_add_accelerator (app, "view.properties", "<control>i");
nautilus_application_add_accelerator (app, "view.open-item-location", "<control><alt>o");