src/gui/movieplayer.cpp fix play icon after pause->seek

This commit is contained in:
Jacek Jendrzej
2017-06-30 13:42:09 +02:00
parent 1f095b96c9
commit 4318615a60

View File

@@ -1253,6 +1253,11 @@ bool CMoviePlayerGui::SetPosition(int pos, bool absolute)
{
clearSubtitle();
bool res = playback->SetPosition(pos, absolute);
if(is_file_player && res && speed == 0 && playstate == CMoviePlayerGui::PAUSE){
playstate = CMoviePlayerGui::PLAY;
speed = 1;
playback->SetSpeed(speed);
}
return res;
}