Disabled timeshift display for non timeshift recordings

This commit is contained in:
kamel5 2021-02-14 18:23:16 +01:00
parent 7a70ed13a7
commit 1fc5379e2e

View File

@ -173,6 +173,9 @@ void cViewReplay::GetGlobalTimers(void) {
void cViewReplay::SetTimeShiftValues(int current, int total) {
if (!recording)
return;
const char *recName = recording->Name();
if (recName && *recName != '@')
return;
timeShiftActive = false;
#if APIVERSNUM >= 20101
int usage = recording->IsInUse();