Commit c27c71c1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: fix taskbar icons states

Close #4559
(cherry picked from commit a05e7f3542aadbb87b59aa4486304cf6df965ffb)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 74078a09
......@@ -265,6 +265,7 @@ void MainInterface::changeThumbbarButtons( int i_status)
switch( i_status )
{
case OPENING_S:
case PLAYING_S:
{
thbButtons[0].dwFlags = THBF_ENABLED;
......@@ -273,7 +274,9 @@ void MainInterface::changeThumbbarButtons( int i_status)
thbButtons[1].iBitmap = 1;
break;
}
case END_S:
case PAUSE_S:
case ERROR_S:
{
thbButtons[0].dwFlags = THBF_ENABLED;
thbButtons[1].dwFlags = THBF_ENABLED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment