mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
Disabled timeshift display for non timeshift recordings
This commit is contained in:
parent
7a70ed13a7
commit
1fc5379e2e
@ -173,6 +173,9 @@ void cViewReplay::GetGlobalTimers(void) {
|
|||||||
void cViewReplay::SetTimeShiftValues(int current, int total) {
|
void cViewReplay::SetTimeShiftValues(int current, int total) {
|
||||||
if (!recording)
|
if (!recording)
|
||||||
return;
|
return;
|
||||||
|
const char *recName = recording->Name();
|
||||||
|
if (recName && *recName != '@')
|
||||||
|
return;
|
||||||
timeShiftActive = false;
|
timeShiftActive = false;
|
||||||
#if APIVERSNUM >= 20101
|
#if APIVERSNUM >= 20101
|
||||||
int usage = recording->IsInUse();
|
int usage = recording->IsInUse();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user