diff options
author | Chaosus89 <chaosus89@gmail.com> | 2019-09-01 08:57:56 +0300 |
---|---|---|
committer | Chaosus89 <chaosus89@gmail.com> | 2019-09-01 09:12:26 +0300 |
commit | 8fd858954753a7e87e220cd538ef905b0615c7cb (patch) | |
tree | 6dc1233aa9e7d8967dd076ee2f6e88630911517c /scene/resources/default_theme/default_theme.cpp | |
parent | 00aabec8bb598592b8a8702797b51fc9f6ca6169 (diff) |
Fix resizer icon visiblity on light theme in GraphNode
Diffstat (limited to 'scene/resources/default_theme/default_theme.cpp')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 1a5f57ce48..d761eb01fe 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -611,6 +611,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_font("title_font", "GraphNode", default_font); theme->set_color("title_color", "GraphNode", Color(0, 0, 0, 1)); theme->set_color("close_color", "GraphNode", Color(0, 0, 0, 1)); + theme->set_color("resizer_color", "GraphNode", Color(0, 0, 0, 1)); theme->set_constant("title_offset", "GraphNode", 20 * scale); theme->set_constant("close_offset", "GraphNode", 18 * scale); theme->set_constant("port_offset", "GraphNode", 3 * scale); |