diff options
author | louis <louis.braun@gmx.de> | 2013-05-09 14:20:00 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-09 14:20:00 +0200 |
commit | 45b91d060e0991870c3784970a3964797df89812 (patch) | |
tree | 3a5d2944d77154322ed5f23a8abb4d03bd246992 | |
parent | b6d15a30ecaf9fd4dbda4aefe455f8a682e3f474 (diff) | |
download | skin-nopacity-45b91d060e0991870c3784970a3964797df89812.tar.gz skin-nopacity-45b91d060e0991870c3784970a3964797df89812.tar.bz2 |
Fixed display of recording duration in recordings menu when a cut is running
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | config.c | 3 | ||||
-rw-r--r-- | menuitem.c | 3 | ||||
-rw-r--r-- | po/de_DE.po | 2 |
4 files changed, 6 insertions, 4 deletions
@@ -212,3 +212,5 @@ Version 0.1.2 - Introduced "plain" style without any blending effects configurable by dedicated theme color - Added theme "iceblue" based on the introduced plain display style +- Fixed display of recording duration in recordings menu when a cut is + running in the background @@ -163,7 +163,6 @@ cNopacityConfig::~cNopacityConfig() { } void cNopacityConfig::setDynamicValues() { -esyslog("nopacity: col blending %x, do Blending %x", Theme.Color(clrDoBlending), CLR_BLENDING_ON); doBlending = (Theme.Color(clrDoBlending) == CLR_BLENDING_ON)?true:false; if (fontIndex == 0) { fontName = strdup(fontDefaultName); @@ -436,4 +435,4 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else return false; return true; -}
\ No newline at end of file +} @@ -1054,14 +1054,15 @@ void cNopacityRecordingMenuItem::DrawFolderIcon(void) { void cNopacityRecordingMenuItem::DrawRecDateTime(void) { int iconDateTimeSize = config.menuRecFolderSize / 2; + int iconHeight = height/2 + (height/2 - iconDateTimeSize)/2; if (!drawn) { cImageLoader imgLoader; if (imgLoader.LoadIcon("skinIcons/recordingdatetime", iconDateTimeSize)) { - int iconHeight = height/2 + (height/2 - iconDateTimeSize)/2; pixmapIcon->DrawImage(cPoint(3, iconHeight), imgLoader.GetImage()); } drawn = true; } + pixmapIcon->DrawRectangle(cRect(iconHeight, 0, width-iconHeight, height), clrTransparent); const cEvent *Event = NULL; Event = Recording->Info()->GetEvent(); cString strDateTime(""); diff --git a/po/de_DE.po b/po/de_DE.po index 42b2bbf..01b3fec 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -366,7 +366,7 @@ msgid "Background Style" msgstr "Hintergrund Stil" msgid "Rounded Corners" -msgstr "" +msgstr "Abgerundete Ecken" msgid "Channel Logo Position" msgstr "Kanallogo Position" |