diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-08 09:52:13 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-08 09:52:13 +0100 |
commit | 204715ae957652a655b38a7a112aa20f59cabcd7 (patch) | |
tree | 2d534e34c220a6bfc05ca08ddb11ae4cce4e4443 /editor/plugins/text_editor.cpp | |
parent | 60d7525d8496a3d84f1bcfc2dd9e2c6da1520ff3 (diff) | |
parent | 94416e41c5a5c956670cae7eedda598ddd15131b (diff) |
Merge pull request #69617 from MewPurPur/this-darn-pixel
Fix fringe issues with shortcuts not behaving as expected for multi-carets
Diffstat (limited to 'editor/plugins/text_editor.cpp')
-rw-r--r-- | editor/plugins/text_editor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index baf5e363f8..d6079d6285 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -353,7 +353,9 @@ void TextEditor::_edit_option(int p_op) { code_editor->duplicate_selection(); } break; case EDIT_TOGGLE_FOLD_LINE: { - tx->toggle_foldable_line(tx->get_caret_line()); + for (int caret_idx = 0; caret_idx < tx->get_caret_count(); caret_idx++) { + tx->toggle_foldable_line(tx->get_caret_line(caret_idx)); + } tx->queue_redraw(); } break; case EDIT_FOLD_ALL_LINES: { |