Skip to content

Commit

Permalink
lowercase mpv looks better in context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
mmozeiko committed Apr 16, 2023
1 parent 3f4a777 commit 2870405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TwitchNotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -876,8 +876,8 @@ static void ShowTrayMenu(HWND Window)

AppendMenuW(Menu, MF_SEPARATOR, 0, NULL);

AppendMenuW(Menu, (State.UseMpv ? MF_CHECKED : MF_STRING) | (MpvFound ? 0 : MF_GRAYED), CMD_USE_MPV, L"Mpv Playback");
AppendMenuW(Menu, MF_POPUP | (MpvFound ? 0 : MF_GRAYED), (UINT_PTR)QualityMenu, L"Mpv Quality");
AppendMenuW(Menu, (State.UseMpv ? MF_CHECKED : MF_STRING) | (MpvFound ? 0 : MF_GRAYED), CMD_USE_MPV, L"mpv Playback");
AppendMenuW(Menu, MF_POPUP | (MpvFound ? 0 : MF_GRAYED), (UINT_PTR)QualityMenu, L"mpv Quality");

AppendMenuW(Menu, MF_SEPARATOR, 0, NULL);
AppendMenuW(Menu, MF_STRING, CMD_EXIT, L"Exit");
Expand Down

0 comments on commit 2870405

Please sign in to comment.