pause button instead of play button in thumbbar when stopped
when vlc player is stopped the middle of the 3 buttons on the Windows 7 thumbbar remains in the previous state instead of showing a play button.
probable fix is to add something like "
case STOPPED_S:
{
thbButtons[0].dwFlags = THBF_ENABLED;
thbButtons[1].dwFlags = THBF_ENABLED;
thbButtons[2].dwFlags = THBF_ENABLED;
thbButtons[1].iBitmap = 2;
break;
}
to main_interface_win32.cpp after line 264 or add case STOPPED_S to the case PAUSE_S