diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-30 14:57:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 14:57:23 +0200 |
commit | a662ca66aacd6e5e817c369570ad9179edc8e673 (patch) | |
tree | cbabdb40e81f00315db0bd300b4180a0fc167428 /editor/editor_themes.cpp | |
parent | 3a19400889d518e35e69087588195328bcda9f8e (diff) | |
parent | e0f8410d1621f6766ebf0600fdb6fe85c3e8157f (diff) |
Merge pull request #53112 from EricEzaM/better-breakpoint-gutter
Diffstat (limited to 'editor/editor_themes.cpp')
-rw-r--r-- | editor/editor_themes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 6e5b94dc07..de1d7b5706 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -1084,6 +1084,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { theme->set_icon("folded", "CodeEdit", theme->get_icon("GuiTreeArrowRight", "EditorIcons")); theme->set_icon("can_fold", "CodeEdit", theme->get_icon("GuiTreeArrowDown", "EditorIcons")); theme->set_icon("executing_line", "CodeEdit", theme->get_icon("MainPlay", "EditorIcons")); + theme->set_icon("breakpoint", "CodeEdit", theme->get_icon("Breakpoint", "EditorIcons")); theme->set_constant("line_spacing", "CodeEdit", EDITOR_DEF("text_editor/appearance/whitespace/line_spacing", 6)); // H/VSplitContainer |