Skip to content

Commit

Permalink
update context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
tsl0922 committed Jan 17, 2024
1 parent 2f002af commit 19f0410
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/views/context_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ std::vector<ContextMenu::Item> ContextMenu::build() {
{TYPE_NORMAL, "frame-step", "menu.playback.next_frame", ICON_FA_ARROW_RIGHT, ".", playing},
{TYPE_NORMAL, "frame-back-step", "menu.playback.previous_frame", ICON_FA_ARROW_LEFT, ",", playing},
{TYPE_SUBMENU, "", "menu.playback.speed", "", "", true, false, {
{TYPE_NORMAL, "multiply speed 2.0", "2x"},
{TYPE_NORMAL, "multiply speed 1.5", "1.5x"},
{TYPE_NORMAL, "multiply speed 1.25", "1.25x"},
{TYPE_NORMAL, "set speed 2.0", "2x"},
{TYPE_NORMAL, "set speed 1.5", "1.5x"},
{TYPE_NORMAL, "set speed 1.25", "1.25x"},
{TYPE_NORMAL, "set speed 1.0", "1.0x"},
{TYPE_NORMAL, "multiply speed 0.75", "0.75x"},
{TYPE_NORMAL, "multiply speed 0.5", "0.5x"},
{TYPE_NORMAL, "set speed 0.75", "0.75x"},
{TYPE_NORMAL, "set speed 0.5", "0.5x"},
}},
{TYPE_SEPARATOR},
{TYPE_NORMAL, "playlist-next", "menu.playback.next_media", ICON_FA_ARROW_RIGHT, ">", playlist.size() > 1},
Expand Down

0 comments on commit 19f0410

Please sign in to comment.