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

Win32: fix taskbar icons states

Close #4559
parent f2c859ca
......@@ -264,6 +264,7 @@ void MainInterface::changeThumbbarButtons( int i_status)
switch( i_status )
{
case OPENING_S:
case PLAYING_S:
{
thbButtons[0].dwFlags = THBF_ENABLED;
......@@ -272,7 +273,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