diff options
author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-06-06 17:55:33 -0300 |
---|---|---|
committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-06-06 17:58:12 -0300 |
commit | 048f149478bf72061613a553f5cfc3d4fa8d4d1a (patch) | |
tree | 23c89ec0b1b5b11a31e726b991ccc246783f1d52 /editor/plugins | |
parent | aaf93f92d8ba9bef29f42b590782fc6f0fad6fdc (diff) |
Fix theme not updating with changes
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 3 |
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; |