diff options
author | Marc Garcia Puig <marcgpuig@gmail.com> | 2022-02-21 22:32:24 +0100 |
---|---|---|
committer | Marc Garcia Puig <marcgpuig@gmail.com> | 2022-04-04 01:21:16 +0200 |
commit | f22d2570253aeff17aba2c88296daed33680453b (patch) | |
tree | 3eed0e4b72e7b9e008af21eb7561f508b3a1f576 /servers/text_server.cpp | |
parent | c630c2001dbe2e25e0d372bd22ce85cdc2822eb0 (diff) | |
download | redot-engine-f22d2570253aeff17aba2c88296daed33680453b.tar.gz |
Fixed ctrl + backspace on empty lines
Fix <word><space><caret> scenario
Fix move left & right for lines without words
Diffstat (limited to 'servers/text_server.cpp')
-rw-r--r-- | servers/text_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/text_server.cpp b/servers/text_server.cpp index ec31885cae..2f32e81f06 100644 --- a/servers/text_server.cpp +++ b/servers/text_server.cpp @@ -758,7 +758,7 @@ PackedInt32Array TextServer::shaped_text_get_word_breaks(const RID &p_shaped, in int word_start = range.x; - int l_size = shaped_text_get_glyph_count(p_shaped); + const int l_size = shaped_text_get_glyph_count(p_shaped); const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped); for (int i = 0; i < l_size; i++) { |