summaryrefslogtreecommitdiff
path: root/displaymenu.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-09-14 14:09:48 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-09-14 16:06:56 +0200
commit9c5f090e19c9949daaf433858eefab947fe1fd3e (patch)
tree4bf06d27c03dc7add663176e5bec01baa3a4fc5f /displaymenu.c
parentc79b808808dc4852fadf058a3b85f9234e5bd423 (diff)
downloadskin-lcarsng-9c5f090e19c9949daaf433858eefab947fe1fd3e.tar.gz
skin-lcarsng-9c5f090e19c9949daaf433858eefab947fe1fd3e.tar.bz2
Correct display some rectangle in cLCARSNGDisplayMenu::DrawFrameDisplay
Diffstat (limited to 'displaymenu.c')
-rw-r--r--displaymenu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/displaymenu.c b/displaymenu.c
index 813d66e..5463817 100644
--- a/displaymenu.c
+++ b/displaymenu.c
@@ -724,15 +724,15 @@ void cLCARSNGDisplayMenu::DrawStatusElbows(void)
void cLCARSNGDisplayMenu::DrawFrameDisplay(void)
{
if (initial) {
- osd->DrawRectangle(xa00, yb00, xa02 - 1, yb01 - 1, frameColorBr);
+ DrawRectangleOutline(osd, xa00, yb00, xa02 - 1, yb01 - 1, frameColorBr, frameColorBg, 15);
if (yb02) // DISK
- osd->DrawRectangle(xa00, yb02, xa02 - 1, yb03 - 1, frameColorBr);
+ DrawRectangleOutline(osd, xa00, yb02, xa02 - 1, yb03 - 1, frameColorBr, frameColorBg, 15);
if (yb04) // LOAD
- osd->DrawRectangle(xa00, yb04, xa02 - 1, yb05 - 1, frameColorBr);
+ DrawRectangleOutline(osd, xa00, yb04, xa02 - 1, yb05 - 1, frameColorBr, frameColorBg, 15);
if (yb06) // RECORDINGS
- osd->DrawRectangle(xa00, yb06, xa02 - 1, yb07 - 1, frameColorBr);
+ DrawRectangleOutline(osd, xa00, yb06, xa02 - 1, yb07 - 1, frameColorBr, frameColorBg, 15);
if (yb08) // TIMER
- osd->DrawRectangle(xa00, yb08, xa02 - 1, yb081 - 1, frameColorBr);
+ DrawRectangleOutline(osd, xa00, yb08, xa02 - 1, yb081 - 1, frameColorBr, frameColorBg, 15);
if (yb082)
DrawRectangleOutline(osd, xa00, yb082, xa02 - 1, yb09 - 1, frameColorBr, frameColorBg, 15);
}