diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-13 18:10:19 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-13 18:10:19 +0100 |
commit | bbd0d760c774a7d0f503f905a15f5c59098303f4 (patch) | |
tree | 0439cf851fd55af89a0aff237686e9d72336e1a2 | |
parent | cb9df5720b518a94a9f7e0ae9d2537235b34005f (diff) | |
download | skin-flatplus-bbd0d760c774a7d0f503f905a15f5c59098303f4.tar.gz skin-flatplus-bbd0d760c774a7d0f503f905a15f5c59098303f4.tar.bz2 |
fix right margin of blue button
-rw-r--r-- | baserender.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/baserender.c b/baserender.c index 5a3d60d9..4621ac12 100644 --- a/baserender.c +++ b/baserender.c @@ -183,7 +183,7 @@ void cFlatBaseRender::ButtonsCreate(void) { } void cFlatBaseRender::ButtonsSet(const char *Red, const char *Green, const char *Yellow, const char *Blue) { - int buttonWidth = (buttonsWidth / 4) - marginItem - Config.decorBorderButtonSize*2; + int buttonWidth = (buttonsWidth / 4) - Config.decorBorderButtonSize*2; buttonsPixmap->Fill(clrTransparent); |