diff options
author | louis <louis.braun@gmx.de> | 2014-12-07 14:28:41 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-12-07 14:28:41 +0100 |
commit | d870026113ba3096c9f5dacbb6de5eebf08ad6f5 (patch) | |
tree | cfdecad2abf4a70325bc1ea5fdf858abdcb1a36f | |
parent | 012e5397434d117f38dd364e192c9358ca2f8285 (diff) | |
download | vdr-plugin-skindesigner-d870026113ba3096c9f5dacbb6de5eebf08ad6f5.tar.gz vdr-plugin-skindesigner-d870026113ba3096c9f5dacbb6de5eebf08ad6f5.tar.bz2 |
fixed display of color buttons in detailed views
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | views/displaymenurootview.c | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -108,4 +108,6 @@ Version 0.0.8 - displaying default menu list if menu category is set to another category but SetItem() is called -Version 0.1.0
\ No newline at end of file +Version 0.1.0 + +- fixed display of color buttons in detailed views
\ No newline at end of file diff --git a/views/displaymenurootview.c b/views/displaymenurootview.c index a96a391..1797332 100644 --- a/views/displaymenurootview.c +++ b/views/displaymenurootview.c @@ -187,6 +187,7 @@ void cDisplayMenuRootView::SetMenu(eMenuCategory menuCat, bool menuInit) { view = new cDisplayMenuView(subView, menuInit); } view->SetMenuCat(cat); + view->SetButtonTexts(buttonTexts); //Cleanup root view ClearRootView(); if (isListView) { |