Skip to content

Commit 43e464a

Browse files
committed
Missed a few trash icons...
1 parent b44aa36 commit 43e464a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/nemo-tree-sidebar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ create_popup_menu (FMTreeView *view)
13371337
eel_gtk_menu_append_separator (GTK_MENU (popup));
13381338

13391339
/* add the "move to trash" menu item */
1340-
menu_image = gtk_image_new_from_icon_name (NEMO_ICON_TRASH_FULL,
1340+
menu_image = gtk_image_new_from_icon_name (NEMO_ICON_SYMBOLIC_TRASH_FULL,
13411341
GTK_ICON_SIZE_MENU);
13421342
gtk_widget_show (menu_image);
13431343
menu_item = gtk_image_menu_item_new_with_mnemonic (_("Mo_ve to Trash"));

src/nemo-view.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9466,7 +9466,7 @@ real_update_location_menu (NemoView *view)
94669466
"tooltip", tip,
94679467
"icon-name", (file != NULL &&
94689468
nemo_file_is_in_trash (file)) ?
9469-
NEMO_ICON_DELETE : NEMO_ICON_TRASH_FULL,
9469+
NEMO_ICON_DELETE : NEMO_ICON_SYMBOLIC_TRASH_FULL,
94709470
NULL);
94719471
gtk_action_set_sensitive (action, can_delete_file);
94729472
gtk_action_set_visible (action, show_delete);
@@ -9803,7 +9803,7 @@ real_update_menus (NemoView *view)
98039803
"label", label,
98049804
"tooltip", tip,
98059805
"icon-name", all_selected_items_in_trash (view) ?
9806-
NEMO_ICON_DELETE : NEMO_ICON_TRASH_FULL,
9806+
NEMO_ICON_DELETE : NEMO_ICON_SYMBOLIC_TRASH_FULL,
98079807
NULL);
98089808
gtk_action_set_sensitive (action, can_delete_files);
98099809

0 commit comments

Comments
 (0)