vdr-1.3.38 and ttxtsubs: menu not visbile in recording if teletext subtitles active
Commit Message
As per the subject, if the teletext subtitles are active during replay
it's impossible to select the menu. The attached patch fixes it but I
don't know it it may have other adverse effects (it doesn't seems so here).
Bye
@@ -789,10 +789,11 @@
key = kNone; // nobody else needs to see this key
if (Menu)
DELETE_MENU;
- else if (cControl::Control() && cOsd::IsOpen())
- cControl::Control()->Hide();
- else
+ else {
+ if (cControl::Control())
+ cControl::Control()->Hide();
Menu = new cMenuMain;
+ }
break;
// Info:
case kInfo: {