diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2020-11-06 14:24:38 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-06 14:24:38 -0300 |
| commit | 207f8c08b3f161ea0e84c3f51d4c86662633b5c9 (patch) | |
| tree | 1eb1930e9124c5ecf77840e80ebed64cbb85608c /editor/plugins/script_editor_plugin.cpp | |
| parent | 391d29f558d122798416b5957660d9eeceecd0f5 (diff) | |
| parent | f2397809a84c2bf0d41e6cb2092fa8f3c5a17850 (diff) | |
| download | redot-engine-207f8c08b3f161ea0e84c3f51d4c86662633b5c9.tar.gz | |
Merge pull request #43323 from reduz/variant-bind-rework2
Refactored Variant Operators.
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index be8ddf789b..ea1941c931 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2397,7 +2397,7 @@ void ScriptEditor::_editor_settings_changed() { if (current_theme == "") { current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme"); - } else if (current_theme != EditorSettings::get_singleton()->get("text_editor/theme/color_theme")) { + } else if (current_theme != String(EditorSettings::get_singleton()->get("text_editor/theme/color_theme"))) { current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme"); EditorSettings::get_singleton()->load_text_editor_theme(); } |
