summaryrefslogtreecommitdiffstats
path: root/editor/project_settings_editor.cpp
diff options
context:
space:
mode:
authorChristian Kaiser <info@ckaiser.com.ar>2024-01-11 17:13:23 -0300
committerChristian Kaiser <info@ckaiser.com.ar>2024-01-11 17:13:23 -0300
commit1910f91f17d1e0b6339acd172e9f9e7c24b0124b (patch)
treea9044ea4c3f42395d1df9496af578e6c29a196e4 /editor/project_settings_editor.cpp
parent12ee58d8bc979d7adc1218f5a343787b604cb780 (diff)
downloadredot-engine-1910f91f17d1e0b6339acd172e9f9e7c24b0124b.tar.gz
Improve "Add" button consistency in Project Settings
* Adds an icon to all the input-adjacent add/remove buttons * Adds a separator next to the action map "add" button * Changes the Shader Globals editor to be consistent with the others * Adds a clear button to the shader global name input
Diffstat (limited to 'editor/project_settings_editor.cpp')
-rw-r--r--editor/project_settings_editor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp
index b7a5521ffd..1b0d791ff1 100644
--- a/editor/project_settings_editor.cpp
+++ b/editor/project_settings_editor.cpp
@@ -556,6 +556,8 @@ void ProjectSettingsEditor::_update_action_map_editor() {
}
void ProjectSettingsEditor::_update_theme() {
+ add_button->set_icon(get_editor_theme_icon(SNAME("Add")));
+ del_button->set_icon(get_editor_theme_icon(SNAME("Remove")));
search_box->set_right_icon(get_editor_theme_icon(SNAME("Search")));
restart_close_button->set_icon(get_editor_theme_icon(SNAME("Close")));
restart_container->add_theme_style_override("panel", get_theme_stylebox(SNAME("panel"), SNAME("Tree")));