From ea40c4ac45a59618d29ff72bbfdaa8cf8c60da9a Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 5 Oct 2007 16:53:16 +0000 Subject: [PATCH] accept suggestion from infernux to use the standard gtk media_pause and media_start icons for the gtk+ client's toolbar. --- gtk/actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/actions.c b/gtk/actions.c index e6f8797b8..ae7d0ecc5 100644 --- a/gtk/actions.c +++ b/gtk/actions.c @@ -67,11 +67,11 @@ static GtkActionEntry entries[] = { "help-menu", NULL, N_("_Help"), NULL, NULL, NULL }, { "priority-menu", NULL, N_("_Priority"), NULL, NULL, NULL }, { "add-torrent", GTK_STOCK_OPEN, NULL, NULL, NULL, G_CALLBACK(action_cb) }, - { "start-torrent", GTK_STOCK_EXECUTE, + { "start-torrent", GTK_STOCK_MEDIA_PLAY, N_("_Start"), "S", NULL, G_CALLBACK(action_cb) }, { "recheck-torrent", GTK_STOCK_REFRESH, N_("Re_check"), NULL, NULL, G_CALLBACK(action_cb) }, - { "stop-torrent", GTK_STOCK_STOP, + { "stop-torrent", GTK_STOCK_MEDIA_PAUSE, N_("S_top"), "T", NULL, G_CALLBACK(action_cb) }, { "remove-torrent", GTK_STOCK_REMOVE, N_("_Remove"), "R", NULL, G_CALLBACK(action_cb) },