diff options
author | Chaosus89 <chaosus89@gmail.com> | 2019-08-30 11:56:45 +0300 |
---|---|---|
committer | Chaosus89 <chaosus89@gmail.com> | 2019-08-30 11:56:45 +0300 |
commit | 227b1c32bc5b24ed85cf33b051ae63003c34cff8 (patch) | |
tree | aa11ae3ec58606856c86fc0ac6a71f588b15c40d | |
parent | 8d78c43ce9b96353daa8a19b0385136dfa111bb8 (diff) |
Fix graph edit lines color on light theme
-rw-r--r-- | editor/editor_themes.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 8134fac21a..c15d24719f 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -995,8 +995,13 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { // GraphEdit theme->set_stylebox("bg", "GraphEdit", style_tree_bg); - theme->set_color("grid_major", "GraphEdit", Color(1.0, 1.0, 1.0, 0.15)); - theme->set_color("grid_minor", "GraphEdit", Color(1.0, 1.0, 1.0, 0.07)); + if (dark_theme) { + theme->set_color("grid_major", "GraphEdit", Color(1.0, 1.0, 1.0, 0.15)); + theme->set_color("grid_minor", "GraphEdit", Color(1.0, 1.0, 1.0, 0.07)); + } else { + theme->set_color("grid_major", "GraphEdit", Color(0.0, 0.0, 0.0, 0.15)); + theme->set_color("grid_minor", "GraphEdit", Color(0.0, 0.0, 0.0, 0.07)); + } theme->set_color("activity", "GraphEdit", accent_color); theme->set_icon("minus", "GraphEdit", theme->get_icon("ZoomLess", "EditorIcons")); theme->set_icon("more", "GraphEdit", theme->get_icon("ZoomMore", "EditorIcons")); |