diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-13 15:51:44 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-13 15:51:44 +0100 |
commit | 2abfa9eafe42deed19a0e339d8c3b52249849c5f (patch) | |
tree | 8e8160894cbc668cf0dd2b3f7dca55bad3e4a9e9 /editor/code_editor.cpp | |
parent | d75018bfd3986087bb48626f6cd5517bdb3fa752 (diff) | |
parent | 11842eb738fe5087d4a13b328468ad2c9a94d4bc (diff) | |
download | redot-engine-2abfa9eafe42deed19a0e339d8c3b52249849c5f.tar.gz |
Merge pull request #68571 from Calinou/editor-default-disable-code-font-ligatures
Disable code font ligatures by default in the editor
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 212a46cb62..510dc345bf 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1872,7 +1872,7 @@ void CodeTextEditor::_apply_settings_change() { } fc->set_opentype_features(ftrs); } break; - default: { // Default. + default: { // Enabled. Dictionary ftrs; ftrs[TS->name_to_tag("calt")] = 1; fc->set_opentype_features(ftrs); @@ -2106,7 +2106,7 @@ CodeTextEditor::CodeTextEditor() { } fc->set_opentype_features(ftrs); } break; - default: { // Default. + default: { // Enabled. Dictionary ftrs; ftrs[TS->name_to_tag("calt")] = 1; fc->set_opentype_features(ftrs); |