Skip to content

Commit

Permalink
gtkui: Show hotkey in playlist context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Jan 17, 2025
1 parent 69172e7 commit e74002d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gtkui/menus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,11 @@ static const AudguiMenuItem rclick_items[] = {
MenuCommand (N_("_Open Containing Folder"), "folder", NONE, pl_open_folder),
MenuCommand (N_("_Refresh Selected"), "view-refresh", GDK_KEY_F6, (GdkModifierType) 0, pl_refresh_sel),
MenuSep (),
MenuCommand (N_("Cu_t"), "edit-cut", NONE, pl_cut),
MenuCommand (N_("_Copy"), "edit-copy", NONE, pl_copy),
MenuCommand (N_("_Paste"), "edit-paste", NONE, pl_paste),
MenuCommand (N_("Cu_t"), "edit-cut", 'x', CTRL, pl_cut),
MenuCommand (N_("_Copy"), "edit-copy", 'c', CTRL, pl_copy),
MenuCommand (N_("_Paste"), "edit-paste", 'v', CTRL, pl_paste),
MenuCommand (N_("Paste at _End"), "edit-paste", 'v', SHIFT_CTRL, pl_paste_end),
MenuCommand (N_("Select _All"), "edit-select-all", NONE, pl_select_all),
MenuCommand (N_("Select _All"), "edit-select-all", 'a', CTRL, pl_select_all),
MenuSep (),
MenuSub (N_("_Services"), nullptr, get_services_pl)
};
Expand Down

0 comments on commit e74002d

Please sign in to comment.