From 49dc61a92cb117a0d38bb307f831b33ecde3435a Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Wed, 29 Jan 2025 10:25:55 +0100 Subject: [PATCH] Fixed an unnecessary redisplay of the menu when pressing a hotkey --- HISTORY | 1 + osdbase.c | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 8e2f1360..81e2551d 100644 --- a/HISTORY +++ b/HISTORY @@ -10065,3 +10065,4 @@ Video Disk Recorder Revision History Stefan Hofmann). - Fixed an improper call of cStatus::OsdCurrentItem() before cStatus::OsdItem2() (reported by Markus Ehrnsperger). +- Fixed an unnecessary redisplay of the menu when pressing a hotkey. diff --git a/osdbase.c b/osdbase.c index f80875f9..855dce82 100644 --- a/osdbase.c +++ b/osdbase.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osdbase.c 5.2 2025/01/16 09:42:11 kls Exp $ + * $Id: osdbase.c 5.3 2025/01/29 10:25:55 kls Exp $ */ #include "osdbase.h" @@ -501,7 +501,6 @@ eOSState cOsdMenu::HotKey(eKeys Key) if (*s == Key - k1 + '1') { current = item->Index(); RefreshCurrent(); - Display(); cRemote::Put(kOk, true); break; }