diff options
author | Pablo Barciela <[email protected]> | 2018-03-26 00:25:51 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2018-03-26 00:25:51 +0200 |
commit | ffc91064319f535eb530f7dbd0d5a5e880716f87 (patch) | |
tree | 7db2b37d736332c477f0f992d465f7e5aaed0d05 | |
parent | 602490bd1e3b49204be607c41be44b2e5485d148 (diff) | |
download | caja-ffc91064319f535eb530f7dbd0d5a5e880716f87.tar.bz2 caja-ffc91064319f535eb530f7dbd0d5a5e880716f87.tar.xz |
eel-editable-label.c: avoid 'append_action_signal' with stock ids
-rw-r--r-- | eel/eel-editable-label.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eel/eel-editable-label.c b/eel/eel-editable-label.c index 4eae8bc3..5ecbab84 100644 --- a/eel/eel-editable-label.c +++ b/eel/eel-editable-label.c @@ -3132,11 +3132,11 @@ popup_targets_received (GtkClipboard *clipboard, clipboard_contains_text = gtk_selection_data_targets_include_text (data); - append_action_signal (label, label->popup_menu, "gtk-cut", _("Cu_t"), "cut_clipboard", + append_action_signal (label, label->popup_menu, "edit-cut", _("Cu_t"), "cut_clipboard", have_selection); - append_action_signal (label, label->popup_menu, "gtk-copy", _("_Copy"), "copy_clipboard", + append_action_signal (label, label->popup_menu, "edit-copy", _("_Copy"), "copy_clipboard", have_selection); - append_action_signal (label, label->popup_menu, "gtk-paste", _("_Paste"), "paste_clipboard", + append_action_signal (label, label->popup_menu, "edit-paste", _("_Paste"), "paste_clipboard", clipboard_contains_text); menuitem = mate_image_menu_item_new_from_icon ("edit-select-all", _("Select All")); |