- movieplayer/record: try to fix timeshift stop; ...

Timeshift was stopped immediately when mpkey_stop was pressed.
After that the record/timeshift menu was shown, but is wasn't possilble
to return to timeshift record.

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-07-23 23:55:19 +02:00
committed by Thilo Graf
parent 759504d149
commit 56442c99bd
2 changed files with 17 additions and 3 deletions

View File

@@ -1379,8 +1379,14 @@ void CRecordManager::StartTimeshift()
if(res)
{
CMoviePlayerGui::getInstance().exec(NULL, tmode);
#if 0
/*
ShowMenu() moved to movieplayer.cpp
Function is called when stop key is pressed.
*/
if(g_settings.temp_timeshift && tstarted && autoshift)
ShowMenu();
#endif
}
}
}