mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed volume display in case a plugin has its own OSD open
This commit is contained in:
parent
7a5ef9e999
commit
536669a139
@ -585,6 +585,7 @@ Marcel Wiesweg <marcel.wiesweg@gmx.de>
|
|||||||
for reporting broken support for raw OSDs of plugins
|
for reporting broken support for raw OSDs of plugins
|
||||||
for reporting a problem with cReceivers that want to receive from PIDs that are
|
for reporting a problem with cReceivers that want to receive from PIDs that are
|
||||||
currently not transmitting
|
currently not transmitting
|
||||||
|
for fixing volume display in case a plugin has its own OSD open
|
||||||
|
|
||||||
Torsten Herz <torsten.herz@web.de>
|
Torsten Herz <torsten.herz@web.de>
|
||||||
for fixing a possible deadlock when using the "Blue" button in the "Schedules" menu
|
for fixing a possible deadlock when using the "Blue" button in the "Schedules" menu
|
||||||
|
2
HISTORY
2
HISTORY
@ -2186,3 +2186,5 @@ Video Disk Recorder Revision History
|
|||||||
(thanks to Gerhard Steiner).
|
(thanks to Gerhard Steiner).
|
||||||
- Fixed cutting a recording if there is only a single editing mark (thanks to
|
- Fixed cutting a recording if there is only a single editing mark (thanks to
|
||||||
Ralf Klueber for reporting this one).
|
Ralf Klueber for reporting this one).
|
||||||
|
- Fixed volume display in case a plugin has its own OSD open (thanks to Marcel
|
||||||
|
Wiesweg).
|
||||||
|
4
vdr.c
4
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.156 2003/05/24 11:06:53 kls Exp $
|
* $Id: vdr.c 1.157 2003/05/24 12:11:43 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -564,7 +564,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
cDevice::PrimaryDevice()->SetVolume(NORMALKEY(key) == kVolDn ? -VOLUMEDELTA : VOLUMEDELTA);
|
cDevice::PrimaryDevice()->SetVolume(NORMALKEY(key) == kVolDn ? -VOLUMEDELTA : VOLUMEDELTA);
|
||||||
if (!Interface->IsOpen())
|
if (!Menu && !Interface->IsOpen())
|
||||||
Menu = Temp = cDisplayVolume::Create();
|
Menu = Temp = cDisplayVolume::Create();
|
||||||
cDisplayVolume::Process(key);
|
cDisplayVolume::Process(key);
|
||||||
key = kNone; // nobody else needs to see these keys
|
key = kNone; // nobody else needs to see these keys
|
||||||
|
Loading…
Reference in New Issue
Block a user