diff options
| author | Paulb23 | 2017-01-12 11:45:37 +0000 |
|---|---|---|
| committer | Paulb23 | 2017-01-12 11:45:37 +0000 |
| commit | e6a44fea055903664d5f56ed9b877f5aafaa2b87 (patch) | |
| tree | 8a673859a0d73b24d4188d055480a16e729a93a8 /tools/editor/plugins/script_editor_plugin.cpp | |
| parent | d0ceefb1d74790267080f21dcfaca326f90e8ef3 (diff) | |
| download | godot-e6a44fea055903664d5f56ed9b877f5aafaa2b87.tar.gz godot-e6a44fea055903664d5f56ed9b877f5aafaa2b87.tar.zst godot-e6a44fea055903664d5f56ed9b877f5aafaa2b87.zip | |
Fix current script background color
Diffstat (limited to '')
| -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 5b2cb4aa5..89a85b4ba 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) { |
