Style.BackgroundOf() returns the accurate color now for TextBox, TextArea and ComboBox.

[GB.GTK3]
* BUG: Style.BackgroundOf() returns the accurate color now for TextBox, TextArea and ComboBox.
This commit is contained in:
gambas 2022-02-23 20:31:43 +01:00
parent 32d3056473
commit 118be55717

View file

@ -2230,7 +2230,7 @@ gColor gControl::realBackground(bool no_default)
if (!no_default)
return COLOR_DEFAULT;
if (parent())
if (!use_base && parent())
return parent()->realBackground(true);
return defaultBackground();