Replace old icon name with system-run #23

This commit is contained in:
Simon Steinbeiss
2020-05-26 01:04:42 +02:00
parent 14be57f036
commit 8ab5181e26

View File

@@ -51,7 +51,7 @@ xtm_exec_tool_button_init (XtmExecToolButton *button)
{ {
GtkWidget *menu; GtkWidget *menu;
gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (button), "gtk-execute"); gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (button), "system-run");
gtk_tool_button_set_use_underline (GTK_TOOL_BUTTON (button), TRUE); gtk_tool_button_set_use_underline (GTK_TOOL_BUTTON (button), TRUE);
menu = construct_menu (); menu = construct_menu ();
@@ -189,11 +189,11 @@ construct_menu (void)
/* Find a runner program */ /* Find a runner program */
if (program_exists ("xfrun4")) if (program_exists ("xfrun4"))
menu_append_item (GTK_MENU (menu), _("Run Program..."), "xfrun4", "gtk-execute"); menu_append_item (GTK_MENU (menu), _("Run Program..."), "xfrun4", "system-run");
else if (program_exists ("gmrun")) else if (program_exists ("gmrun"))
menu_append_item (GTK_MENU (menu), _("Run Program..."), "gmrun", "gtk-execute"); menu_append_item (GTK_MENU (menu), _("Run Program..."), "gmrun", "system-run");
else if (program_exists ("gexec")) else if (program_exists ("gexec"))
menu_append_item (GTK_MENU (menu), _("Run Program..."), "gexec", "gtk-execute"); menu_append_item (GTK_MENU (menu), _("Run Program..."), "gexec", "system-run");
/* Find an applications-listing program */ /* Find an applications-listing program */
if (program_exists ("xfce4-appfinder")) if (program_exists ("xfce4-appfinder"))
menu_append_item (GTK_MENU (menu), _("Application Finder"), "xfce4-appfinder", "xfce4-appfinder"); menu_append_item (GTK_MENU (menu), _("Application Finder"), "xfce4-appfinder", "xfce4-appfinder");