From b575ff9698ee709439767f13515273cf195c5738 Mon Sep 17 00:00:00 2001 From: ASHIT-AXAR Date: Thu, 22 Feb 2018 00:53:00 +0330 Subject: [PATCH] Update minigui.d --- minigui.d | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/minigui.d b/minigui.d index 5963c1b..59f4101 100644 --- a/minigui.d +++ b/minigui.d @@ -1439,9 +1439,16 @@ class Widget { Color backgroundColor() { // the default is a "transparent" background, which means // it goes as far up as it can to get the color - if(parent) - return parent.backgroundColor(); - return Color.transparent; + if (color != Color.transparent) return color; + if (parent) return parent.backgroundColor(); + return color; + } + + private Color color = Color.transparent; + + /// + void backgroundColor(Color c){ + this.color = c; } ///