summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-03-15 13:52:14 +0100
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-03-15 13:52:14 +0100
commit0cd8136a9a58501332ed808c7d92bd1ffcd57c01 (patch)
tree143d421d37ca4f22238155789de8e34751a2a50a /setup.c
parent26ea9ceb9851ba99029bd9fdf2ed33ce9585870b (diff)
downloadskin-flatplus-0cd8136a9a58501332ed808c7d92bd1ffcd57c01.tar.gz
skin-flatplus-0cd8136a9a58501332ed808c7d92bd1ffcd57c01.tar.bz2
add pre load cache, menu entr to show amount of cached images, fix topbar channel logo in program menu
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.c b/setup.c
index 08b77541..9814864f 100644
--- a/setup.c
+++ b/setup.c
@@ -261,6 +261,9 @@ void cFlatSetupGeneral::Setup(void) {
Add(new cMenuEditStraItem(tr("Button border type"), &SetupConfig->decorBorderButtonTypeUser, Bordertypes.Size(), &Bordertypes[0]));
Add(new cMenuEditIntItem(tr("Button border size"), &SetupConfig->decorBorderButtonSizeUser));
}
+
+ cString ImageCache = cString::sprintf("%s:\t%d / %d", tr("Imagecache entries"), imgCache.getCacheCount(), MAX_IMAGE_CACHE);
+ Add(new cOsdItem(ImageCache, osUnknown, true));
if( ItemLastSel >= 0 ) {
SetCurrent(Get(ItemLastSel));