diff options
| -rw-r--r-- | platform/android/SCsub | 6 | ||||
| -rw-r--r-- | tools/editor/editor_settings.cpp | 1 | 
2 files changed, 4 insertions, 3 deletions
diff --git a/platform/android/SCsub b/platform/android/SCsub index fab8458b26..c8feac8690 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -65,17 +65,17 @@ for x in env.android_java_dirs:  gradle_res_dirs_text=""  for x in env.android_res_dirs: -	gradle_res_dirs_text+=",'"+x+"'" +	gradle_res_dirs_text+=",'"+x.replace("\\","/")+"'"  gradle_aidl_dirs_text=""  for x in env.android_aidl_dirs: -	gradle_aidl_dirs_text+=",'"+x+"'" +	gradle_aidl_dirs_text+=",'"+x.replace("\\","/")+"'"  gradle_jni_dirs_text=""  for x in env.android_jni_dirs: -	gradle_jni_dirs_text+=",'"+x+"'" +	gradle_jni_dirs_text+=",'"+x.replace("\\","/")+"'"  gradle_asset_dirs_text="" diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 4e6d78084f..893b9cb28e 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -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());  |