mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
- movieplayer: fix display of timeshift stop dialog ...
... if timeshift was stopped in background while playback Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -1654,7 +1654,12 @@ void CMoviePlayerGui::PlayFileLoop(void)
|
||||
bool timeshift_stopped = false;
|
||||
|
||||
if (timeshift != TSHIFT_MODE_OFF)
|
||||
timeshift_stopped = CRecordManager::getInstance()->ShowMenu();
|
||||
{
|
||||
if (CRecordManager::getInstance()->Timeshift())
|
||||
timeshift_stopped = CRecordManager::getInstance()->ShowMenu();
|
||||
else // timeshift playback still active, but recording already stopped
|
||||
timeshift_stopped = true;
|
||||
}
|
||||
|
||||
if (timeshift == TSHIFT_MODE_OFF || timeshift_stopped)
|
||||
{
|
||||
|
Reference in New Issue
Block a user