summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-06-07 11:47:21 +0200
committerGitHub <noreply@github.com>2018-06-07 11:47:21 +0200
commit9d23f1bf1a5b8c1b17a69d928834f92635eedd78 (patch)
treed889e53053b173b9399163c4c4c02abd7eb47d95
parent952fe9d50664203292531cbb264f71ddf4c27d19 (diff)
parent048f149478bf72061613a553f5cfc3d4fa8d4d1a (diff)
Merge pull request #19399 from guilhermefelipecgs/fix_theme_change
Fix theme not updating with changes
-rw-r--r--editor/plugins/script_editor_plugin.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index 3c0cc589dc..0946abdeab 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -1215,6 +1215,9 @@ void ScriptEditor::_notification(int p_what) {
script_forward->set_icon(get_icon("Forward", "EditorIcons"));
script_back->set_icon(get_icon("Back", "EditorIcons"));
+ members_overview_alphabeta_sort_button->set_icon(get_icon("Sort", "EditorIcons"));
+ filename->add_style_override("normal", editor->get_gui_base()->get_stylebox("normal", "LineEdit"));
+
recent_scripts->set_as_minsize();
} break;