diff options
| author | Rémi Verschelde | 2017-12-10 13:03:53 +0100 |
|---|---|---|
| committer | GitHub | 2017-12-10 13:03:53 +0100 |
| commit | bf45e569c9e02b64e1e0ee65ceed57bf526a3706 (patch) | |
| tree | 73378863d85ee442f46c8fa365937d9fd3a1775e /editor/editor_themes.cpp | |
| parent | d1995b7d8c06766df518c413abb6d0bcb08a71e4 (diff) | |
| parent | 63ec5823d18ca1f93b0a3b76b171ec2d46465da3 (diff) | |
| download | godot-bf45e569c9e02b64e1e0ee65ceed57bf526a3706.tar.gz godot-bf45e569c9e02b64e1e0ee65ceed57bf526a3706.tar.zst godot-bf45e569c9e02b64e1e0ee65ceed57bf526a3706.zip | |
Merge pull request #11510 from AndreaCatania/skel
Added skeleton x-ray
Diffstat (limited to 'editor/editor_themes.cpp')
| -rw-r--r-- | editor/editor_themes.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 4661fcf66..8b9c261f8 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -625,6 +625,9 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { theme->set_icon("radio_checked", "PopupMenu", theme->get_icon("GuiChecked", "EditorIcons")); theme->set_icon("radio_unchecked", "PopupMenu", theme->get_icon("GuiUnchecked", "EditorIcons")); theme->set_icon("submenu", "PopupMenu", theme->get_icon("ArrowRight", "EditorIcons")); + theme->set_icon("visibility_hidden", "PopupMenu", theme->get_icon("GuiVisibilityHidden", "EditorIcons")); + theme->set_icon("visibility_visible", "PopupMenu", theme->get_icon("GuiVisibilityVisible", "EditorIcons")); + theme->set_icon("visibility_xray", "PopupMenu", theme->get_icon("GuiVisibilityXray", "EditorIcons")); theme->set_constant("vseparation", "PopupMenu", (extra_spacing + default_margin_size) * EDSCALE); // Tree & ItemList background |
