1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-29 16:16:38 +00:00

Remove redundant assignments.

Use used_in_transfer instead of used_in_compute twice.
This commit is contained in:
Anilforextra
2021-08-21 15:22:21 +05:45
parent 0a001afec5
commit c86db8b710
5 changed files with 3 additions and 9 deletions

View File

@@ -2150,7 +2150,6 @@ void TextEdit::_delete(bool p_word, bool p_all_to_right) {
next_column = column;
} else {
// Delete one character
next_column = caret.column < curline_len ? (caret.column + 1) : 0;
if (caret_mid_grapheme_enabled) {
next_column = caret.column < curline_len ? (caret.column + 1) : 0;
} else {