mirror of
https://github.com/godotengine/godot.git
synced 2025-01-24 11:32:51 -05:00
Save line number color with text editor theme
This commit is contained in:
parent
b777b32470
commit
bb61ef9d9a
1 changed files with 1 additions and 0 deletions
|
@ -770,6 +770,7 @@ bool EditorSettings::_save_text_editor_theme(String p_file) {
|
|||
Ref<ConfigFile> cf = memnew( ConfigFile ); // hex is better?
|
||||
cf->set_value(theme_section, "background_color", ((Color)get("text_editor/background_color")).to_html());
|
||||
cf->set_value(theme_section, "caret_color", ((Color)get("text_editor/caret_color")).to_html());
|
||||
cf->set_value(theme_section, "line_number_color", ((Color)get("text_editor/line_number_color")).to_html());
|
||||
cf->set_value(theme_section, "text_color", ((Color)get("text_editor/text_color")).to_html());
|
||||
cf->set_value(theme_section, "text_selected_color", ((Color)get("text_editor/text_selected_color")).to_html());
|
||||
cf->set_value(theme_section, "keyword_color", ((Color)get("text_editor/keyword_color")).to_html());
|
||||
|
|
Loading…
Add table
Reference in a new issue