From b99fb6f07a4dc4ff5a78d9504e827c0ed996f178 Mon Sep 17 00:00:00 2001 From: Mike Gelfand Date: Mon, 1 May 2017 18:58:27 +0300 Subject: [PATCH] Add queue up/down hotkeys (GTK+ client) --- gtk/actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/actions.c b/gtk/actions.c index 58477cb05..1c753b51b 100644 --- a/gtk/actions.c +++ b/gtk/actions.c @@ -109,8 +109,8 @@ static GtkActionEntry entries[] = { "help", GTK_STOCK_HELP, N_("_Contents"), "F1", NULL, G_CALLBACK(action_cb) }, { "torrent-reannounce", GTK_STOCK_NETWORK, N_("Ask Tracker for _More Peers"), NULL, NULL, G_CALLBACK(action_cb) }, { "queue-move-top", GTK_STOCK_GOTO_TOP, N_("Move to _Top"), NULL, NULL, G_CALLBACK(action_cb) }, - { "queue-move-up", GTK_STOCK_GO_UP, N_("Move _Up"), NULL, NULL, G_CALLBACK(action_cb) }, - { "queue-move-down", GTK_STOCK_GO_DOWN, N_("Move _Down"), NULL, NULL, G_CALLBACK(action_cb) }, + { "queue-move-up", GTK_STOCK_GO_UP, N_("Move _Up"), "Up", NULL, G_CALLBACK(action_cb) }, + { "queue-move-down", GTK_STOCK_GO_DOWN, N_("Move _Down"), "Down", NULL, G_CALLBACK(action_cb) }, { "queue-move-bottom", GTK_STOCK_GOTO_BOTTOM, N_("Move to _Bottom"), NULL, NULL, G_CALLBACK(action_cb) }, { "present-main-window", NULL, N_("Present Main Window"), NULL, NULL, G_CALLBACK(action_cb) } };