mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed displaying remote timers in the main menu of skin LCARS
This commit is contained in:
parent
f90edc1e8b
commit
1efd5e6b7e
3
HISTORY
3
HISTORY
@ -8925,7 +8925,7 @@ Video Disk Recorder Revision History
|
|||||||
- Now stopping any ongoing recordings before stopping the plugins, to avoid
|
- Now stopping any ongoing recordings before stopping the plugins, to avoid
|
||||||
a crash when stopping VDR while recording.
|
a crash when stopping VDR while recording.
|
||||||
|
|
||||||
2017-04-18: Version 2.3.4
|
2017-04-20: Version 2.3.4
|
||||||
|
|
||||||
- The functionality of HandleRemoteModifications(), which synchronizes changes to
|
- The functionality of HandleRemoteModifications(), which synchronizes changes to
|
||||||
timers between peer VDR machines, has been moved to timers.[ch] and renamed to
|
timers between peer VDR machines, has been moved to timers.[ch] and renamed to
|
||||||
@ -8981,3 +8981,4 @@ Video Disk Recorder Revision History
|
|||||||
- The new function cDevice::SignalStats() (if implemented by an actual device) returns
|
- The new function cDevice::SignalStats() (if implemented by an actual device) returns
|
||||||
statistics about the currently received signal.
|
statistics about the currently received signal.
|
||||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||||
|
- Fixed displaying remote timers in the main menu of skin LCARS.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: skinlcars.c 4.3 2017/01/19 15:27:48 kls Exp $
|
* $Id: skinlcars.c 4.4 2017/04/20 08:46:42 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
||||||
@ -1270,6 +1270,8 @@ void cSkinLCARSDisplayMenu::DrawTimers(void)
|
|||||||
FreeDeviceSlots.Append(y);
|
FreeDeviceSlots.Append(y);
|
||||||
y += lineHeight + Gap;
|
y += lineHeight + Gap;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
else if (cRecordControl *RecordControl = cRecordControls::GetRecordControl(Timer)) {
|
else if (cRecordControl *RecordControl = cRecordControls::GetRecordControl(Timer)) {
|
||||||
if (!Device || Device == RecordControl->Device()) {
|
if (!Device || Device == RecordControl->Device()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user