mirror of https://github.com/adamdruppe/arsd.git
call it backgroundColor instead of color
This commit is contained in:
parent
6b25bec469
commit
16b84d2c2d
12
minigui.d
12
minigui.d
|
@ -1439,16 +1439,18 @@ class Widget {
|
||||||
Color backgroundColor() {
|
Color backgroundColor() {
|
||||||
// the default is a "transparent" background, which means
|
// the default is a "transparent" background, which means
|
||||||
// it goes as far up as it can to get the color
|
// it goes as far up as it can to get the color
|
||||||
if (color != Color.transparent) return color;
|
if (backgroundColor_ != Color.transparent)
|
||||||
if (parent) return parent.backgroundColor();
|
return backgroundColor_;
|
||||||
return color;
|
if (parent)
|
||||||
|
return parent.backgroundColor();
|
||||||
|
return backgroundColor_;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Color color = Color.transparent;
|
private Color backgroundColor_ = Color.transparent;
|
||||||
|
|
||||||
///
|
///
|
||||||
void backgroundColor(Color c){
|
void backgroundColor(Color c){
|
||||||
this.color = c;
|
this.backgroundColor_ = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue