Skip to content

Commit

Permalink
MythMusic: Promote Fullscreen Vis to first menu item on stream view
Browse files Browse the repository at this point in the history
because adds/edits/removes are done less frequently
  • Loading branch information
twitham1 authored and kmdewaal committed Feb 11, 2024
1 parent af6ac52 commit 8bb0dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythmusic/mythmusic/streamview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ bool StreamView::Create(void)
void StreamView::ShowMenu(void)
{
auto *menu = new MythMenu(tr("Stream Actions"), this, "mainmenu");
menu->AddItemV(MusicCommon::tr("Fullscreen Visualizer"), QVariant::fromValue((int)MV_VISUALIZER));
menu->AddItem(tr("Add Stream"));

if (m_streamList->GetItemCurrent())
Expand All @@ -85,7 +86,6 @@ void StreamView::ShowMenu(void)
menu->AddItem(tr("Remove Stream"));
}

menu->AddItemV(MusicCommon::tr("Fullscreen Visualizer"), QVariant::fromValue((int)MV_VISUALIZER));
menu->AddItemV(MusicCommon::tr("Lyrics"), QVariant::fromValue((int)MV_LYRICS));

menu->AddItem(tr("More Options"), nullptr, createSubMenu());
Expand Down

0 comments on commit 8bb0dcd

Please sign in to comment.