You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Merge pull request #10439 from Paulb23/blinking_text_issue_10432
Fixed blinking text, issue 10432
This commit is contained in:
@@ -1028,6 +1028,8 @@ void TextEdit::_notification(int p_what) {
|
|||||||
|
|
||||||
if (cursor.column == j && cursor.line == line && block_caret && draw_caret && !insert_mode) {
|
if (cursor.column == j && cursor.line == line && block_caret && draw_caret && !insert_mode) {
|
||||||
color = cache.caret_background_color;
|
color = cache.caret_background_color;
|
||||||
|
} else if (!syntax_coloring && block_caret) {
|
||||||
|
color = cache.font_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (str[j] >= 32) {
|
if (str[j] >= 32) {
|
||||||
|
|||||||
Reference in New Issue
Block a user