diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2017-01-12 11:45:37 +0000 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2017-01-12 11:45:37 +0000 |
commit | e6a44fea055903664d5f56ed9b877f5aafaa2b87 (patch) | |
tree | 8a673859a0d73b24d4188d055480a16e729a93a8 /tools/editor/plugins/script_editor_plugin.cpp | |
parent | d0ceefb1d74790267080f21dcfaca326f90e8ef3 (diff) | |
download | redot-engine-e6a44fea055903664d5f56ed9b877f5aafaa2b87.tar.gz |
Fix current script background color
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 5b2cb4aa5d..89a85b4ba0 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -1361,7 +1361,7 @@ void ScriptEditor::_update_script_colors() { bool current = tab_container->get_current_tab() == c; if (current && highlight_current) { - script_list->set_item_custom_bg_color(i, EditorSettings::get_singleton()->get("text_editor/current_script_background_color")); + script_list->set_item_custom_bg_color(i, EditorSettings::get_singleton()->get("text_editor/open_scripts/current_script_background_color")); } else if (script_temperature_enabled) { |