diff options
| author | toger5 | 2017-08-08 16:14:47 +0200 |
|---|---|---|
| committer | toger5 | 2017-08-15 20:11:36 +0200 |
| commit | 701fb55a108bd83d9a1e6c6bc4bfe61539df333d (patch) | |
| tree | 9c26415abcb1ff13d8120f04857577c912849328 /scene/resources/theme.cpp | |
| parent | 015494ba56fc393b9e83a51dca76979eecc3d3c2 (diff) | |
| download | godot-701fb55a108bd83d9a1e6c6bc4bfe61539df333d.tar.gz godot-701fb55a108bd83d9a1e6c6bc4bfe61539df333d.tar.zst godot-701fb55a108bd83d9a1e6c6bc4bfe61539df333d.zip | |
styleBoxFlat removed light, dark color entirely
Diffstat (limited to '')
| -rw-r--r-- | scene/resources/theme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/theme.cpp b/scene/resources/theme.cpp index 945a4307d..ac1bb105a 100644 --- a/scene/resources/theme.cpp +++ b/scene/resources/theme.cpp @@ -929,8 +929,8 @@ RES ResourceFormatLoaderTheme::load(const String &p_path, const String &p_origin dark = Color::html(params[3]); } - sbflat->set_dark_color(dark); - sbflat->set_light_color(bright); + sbflat->set_border_color_all(bright); + // sbflat->set_dark_color(dark); sbflat->set_bg_color(normal); if (params.size() == ccodes + 5) { |
