From 991a13ee4b64b44cb599138c7e22e9820b4e7f48 Mon Sep 17 00:00:00 2001 From: NikoKrause Date: Mon, 26 Mar 2018 16:13:07 +0200 Subject: [PATCH] Use media-mount icon for right-click action depends on https://github.com/linuxmint/xapps/pull/37 --- src/nemo-view.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nemo-view.c b/src/nemo-view.c index b58d66364..43a90e83d 100644 --- a/src/nemo-view.c +++ b/src/nemo-view.c @@ -8317,7 +8317,7 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("Connect To This Server"), NULL, /* tooltip */ N_("Make a permanent connection to this server"), G_CALLBACK (action_connect_to_server_link_callback) }, - /* name, stock id */ { "Mount Volume", NULL, + /* name, stock id */ { "Mount Volume", "media-mount-symbolic", /* label, accelerator */ N_("_Mount"), NULL, /* tooltip */ N_("Mount the selected volume"), G_CALLBACK (action_mount_volume_callback) }, @@ -8341,7 +8341,7 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("_Detect Media"), NULL, /* tooltip */ N_("Detect media in the selected drive"), G_CALLBACK (action_detect_media_callback) }, - /* name, stock id */ { "Self Mount Volume", NULL, + /* name, stock id */ { "Self Mount Volume", "media-mount-symbolic", /* label, accelerator */ N_("_Mount"), NULL, /* tooltip */ N_("Mount the volume associated with the open folder"), G_CALLBACK (action_self_mount_volume_callback) }, @@ -8413,7 +8413,7 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("_Restore"), NULL, NULL, G_CALLBACK (action_location_restore_from_trash_callback) }, - /* name, stock id */ { "Location Mount Volume", NULL, + /* name, stock id */ { "Location Mount Volume", "media-mount-symbolic", /* label, accelerator */ N_("_Mount"), NULL, /* tooltip */ N_("Mount the volume associated with this folder"), G_CALLBACK (action_location_mount_volume_callback) },