diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-15 13:52:14 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-03-15 13:52:14 +0100 |
commit | 0cd8136a9a58501332ed808c7d92bd1ffcd57c01 (patch) | |
tree | 143d421d37ca4f22238155789de8e34751a2a50a /setup.c | |
parent | 26ea9ceb9851ba99029bd9fdf2ed33ce9585870b (diff) | |
download | skin-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)); |