summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-02-09 13:39:11 +0100
committerlouis <louis.braun@gmx.de>2013-02-09 13:39:11 +0100
commit599dd12e765eac556dd4302b31e2add429c3121e (patch)
treec7ca09d7da94b8c19f18d765a9f5e0de0d070709
parent60efaee664776a5103d91105e78a6ac3aeeee748 (diff)
downloadskin-nopacity-599dd12e765eac556dd4302b31e2add429c3121e.tar.gz
skin-nopacity-599dd12e765eac556dd4302b31e2add429c3121e.tar.bz2
Display of free disk space in recordings menu header
-rw-r--r--HISTORY7
-rw-r--r--displaymenu.c4
2 files changed, 10 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 8134842..8790ba8 100644
--- a/HISTORY
+++ b/HISTORY
@@ -88,7 +88,7 @@ VDR Plugin 'nOpacity' Revision History
sections for clearer arrangement
- different minor changes and fixes
-Version 0.0.6
+2012-02-07: Version 0.0.6
- Introduced new narrow displayed Recordings menu
- Fixed displaying configurable color buttons
@@ -119,3 +119,8 @@ Version 0.0.6
highlighted
- Added screen resolution icon in DisplayReplay
- Changed Makefile to avoid warnings with newer ImageMagick versions
+
+Version 0.0.7:
+- Width of narrow menus (main, schedule, channel, recordings, settings)
+ individually configurable
+- Display of free disk space in recordings menu header
diff --git a/displaymenu.c b/displaymenu.c
index a00d9c4..b13e36c 100644
--- a/displaymenu.c
+++ b/displaymenu.c
@@ -221,6 +221,10 @@ void cNopacityDisplayMenu::SetTitle(const char *Title) {
menuView->ShowHeaderLogo(false);
left += menuView->ShowHeaderIconChannelLogo(Title);
break;
+ case mcRecording:
+ title = cString::sprintf("%s (%s)", Title, *cVideoDiskUsage::String());
+ left += menuView->DrawHeaderIcon(MenuCategory());
+ break;
default:
menuView->ShowHeaderLogo(false);
left += menuView->DrawHeaderIcon(MenuCategory());