1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Fix current script background color

This commit is contained in:
Paulb23
2017-01-12 11:45:37 +00:00
parent d0ceefb1d7
commit e6a44fea05

View File

@@ -1361,7 +1361,7 @@ void ScriptEditor::_update_script_colors() {
bool current = tab_container->get_current_tab() == c; bool current = tab_container->get_current_tab() == c;
if (current && highlight_current) { 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) { } else if (script_temperature_enabled) {