1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 08:13:27 +00:00

accept suggestion from infernux to use the standard gtk media_pause and media_start icons for the gtk+ client's toolbar.

This commit is contained in:
Charles Kerr 2007-10-05 16:53:16 +00:00
parent 3a6985195d
commit ea40c4ac45

View file

@ -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"), "<control>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"), "<control>T", NULL, G_CALLBACK(action_cb) },
{ "remove-torrent", GTK_STOCK_REMOVE,
N_("_Remove"), "<control>R", NULL, G_CALLBACK(action_cb) },