summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-04-24 09:19:48 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-04-24 09:19:48 +0200
commit53d08255157812632a34f59c7b66dbf000782b84 (patch)
tree27d81067802f32cff95344c85cd9e22255092a3a /menu.c
parent28685f98956404b42766417ba71df6a5a3030ebf (diff)
downloadvdr-53d08255157812632a34f59c7b66dbf000782b84.tar.gz
vdr-53d08255157812632a34f59c7b66dbf000782b84.tar.bz2
OSD and skin are now reinitialized after a plugin setup page has been confirmed
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index c6208e1d..21c59381 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 2.50 2012/04/22 15:13:14 kls Exp $
+ * $Id: menu.c 2.51 2012/04/24 09:17:45 kls Exp $
*/
#include "menu.h"
@@ -3186,8 +3186,13 @@ eOSState cMenuSetupPlugins::ProcessKey(eKeys Key)
}
}
}
- else if (state == osContinue)
+ else if (state == osContinue) {
Store();
+ // Reinitialize OSD and skin, in case any plugin setup change has an influence on these:
+ cOsdProvider::UpdateOsdSize(true);
+ SetDisplayMenu();
+ Display();
+ }
}
return state;
}