diff options
author | Indah Sylvia <ISylvox@yahoo.com> | 2017-12-05 16:28:00 +0700 |
---|---|---|
committer | Indah Sylvia <ISylvox@yahoo.com> | 2017-12-05 16:28:00 +0700 |
commit | 0102c861dac8c5e9b5be7f3062404f779723c8df (patch) | |
tree | 4cda47325e5db1823d70b98a1e810ae7db2f1aab /editor | |
parent | 804035945809ef537aec76ef211352eaf42f3415 (diff) |
Caret blinking is now enabled by default
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 638b23382d..a8d857dd5e 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -348,7 +348,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { _initial_set("text_editor/files/autosave_interval_secs", 0); _initial_set("text_editor/cursor/block_caret", false); - _initial_set("text_editor/cursor/caret_blink", false); + _initial_set("text_editor/cursor/caret_blink", true); _initial_set("text_editor/cursor/caret_blink_speed", 0.65); hints["text_editor/cursor/caret_blink_speed"] = PropertyInfo(Variant::REAL, "text_editor/cursor/caret_blink_speed", PROPERTY_HINT_RANGE, "0.1, 10, 0.1"); |