diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-12 10:45:43 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-08-12 10:45:43 +0200 |
commit | 6f568625d715f10c98edd254dd6b050492140287 (patch) | |
tree | d2106bbeaaa52969ea7d872ca8101509c3956d7f /menu.c | |
parent | 33e5ef3a5867998bec1bb3d8d7c8b6597cc1393b (diff) | |
download | vdr-6f568625d715f10c98edd254dd6b050492140287.tar.gz vdr-6f568625d715f10c98edd254dd6b050492140287.tar.bz2 |
Fixed handling kLeft in the calls to cStatus::MsgOsdTextItem()
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.458 2007/08/12 10:35:16 kls Exp $ + * $Id: menu.c 1.459 2007/08/12 10:44:35 kls Exp $ */ #include "menu.h" @@ -630,7 +630,7 @@ eOSState cMenuText::ProcessKey(eKeys Key) case kRight|k_Repeat: case kRight: DisplayMenu()->Scroll(NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft, NORMALKEY(Key) == kLeft || NORMALKEY(Key) == kRight); - cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp); + cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft); return osContinue; default: break; } @@ -980,7 +980,7 @@ eOSState cMenuEvent::ProcessKey(eKeys Key) case kRight|k_Repeat: case kRight: DisplayMenu()->Scroll(NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft, NORMALKEY(Key) == kLeft || NORMALKEY(Key) == kRight); - cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp); + cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft); return osContinue; default: break; } @@ -1809,7 +1809,7 @@ eOSState cMenuRecording::ProcessKey(eKeys Key) case kRight|k_Repeat: case kRight: DisplayMenu()->Scroll(NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft, NORMALKEY(Key) == kLeft || NORMALKEY(Key) == kRight); - cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp); + cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft); return osContinue; default: break; } |