diff options
| author | Rémi Verschelde | 2017-08-31 11:47:18 +0200 |
|---|---|---|
| committer | GitHub | 2017-08-31 11:47:18 +0200 |
| commit | f00760b22cee9cb1472dd7f02820556d273d7919 (patch) | |
| tree | 65153e657738dc96809913b790ec00630c7f4476 /editor/plugins/spatial_editor_plugin.cpp | |
| parent | f1e3dec4422a114d42ebb29daefa8c3d4bf83999 (diff) | |
| parent | ff0a149de94b723a6013fb224ec5a8d0bfada68d (diff) | |
| download | godot-f00760b22cee9cb1472dd7f02820556d273d7919.tar.gz godot-f00760b22cee9cb1472dd7f02820556d273d7919.tar.zst godot-f00760b22cee9cb1472dd7f02820556d273d7919.zip | |
Merge pull request #10382 from toger5/dark_icons
Light Theme
Diffstat (limited to 'editor/plugins/spatial_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/spatial_editor_plugin.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/editor/plugins/spatial_editor_plugin.cpp b/editor/plugins/spatial_editor_plugin.cpp index 141b4bf72..bc5c70095 100644 --- a/editor/plugins/spatial_editor_plugin.cpp +++ b/editor/plugins/spatial_editor_plugin.cpp @@ -3765,6 +3765,20 @@ void SpatialEditor::_notification(int p_what) { _finish_indicators(); memdelete(gizmos); } + if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) { + tool_button[SpatialEditor::TOOL_MODE_SELECT]->set_icon(get_icon("ToolSelect", "EditorIcons")); + tool_button[SpatialEditor::TOOL_MODE_MOVE]->set_icon(get_icon("ToolMove", "EditorIcons")); + tool_button[SpatialEditor::TOOL_MODE_ROTATE]->set_icon(get_icon("ToolRotate", "EditorIcons")); + tool_button[SpatialEditor::TOOL_MODE_SCALE]->set_icon(get_icon("ToolScale", "EditorIcons")); + tool_button[SpatialEditor::TOOL_MODE_LIST_SELECT]->set_icon(get_icon("ListSelect", "EditorIcons")); + + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_1_VIEWPORT), get_icon("Panels1", "EditorIcons")); + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_2_VIEWPORTS), get_icon("Panels2", "EditorIcons")); + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_2_VIEWPORTS_ALT), get_icon("Panels2Alt", "EditorIcons")); + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_3_VIEWPORTS), get_icon("Panels3", "EditorIcons")); + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_3_VIEWPORTS_ALT), get_icon("Panels3Alt", "EditorIcons")); + view_menu->get_popup()->set_item_icon(view_menu->get_popup()->get_item_index(MENU_VIEW_USE_4_VIEWPORTS), get_icon("Panels4", "EditorIcons")); + } } void SpatialEditor::add_control_to_menu_panel(Control *p_control) { |
