summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2015-04-08 14:46:06 +0200
committerCarlos Soriano <csoriano@gnome.org>2015-04-08 14:47:30 +0200
commit1b513125687c665ab585ff51b06c35a4f214d41d (patch)
treec340c40e9d3693d1c3af5b4e23a8a96576194701
parent6f4fc647917364e0b86e6f485efca9d70bbe21f2 (diff)
downloadnautilus-1b513125687c665ab585ff51b06c35a4f214d41d.tar.gz
window: fix xf86-favorites shortcut
It was using the previous action name before the gaction port https://bugzilla.gnome.org/show_bug.cgi?id=747485
-rw-r--r--src/nautilus-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 3ecd3fc88..96c4ae656 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -162,7 +162,7 @@ static const struct {
#ifdef HAVE_X11_XF86KEYSYM_H
/* Window actions */
{ XF86XK_AddFavorite, "bookmark-current-location" },
- { XF86XK_Favorites, "edit-bookmarks" },
+ { XF86XK_Favorites, "bookmarks" },
{ XF86XK_Go, "enter-location" },
{ XF86XK_HomePage, "go-home" },
{ XF86XK_OpenURL, "enter-location" },