Merge pull request #51673 from Vignesh1-art/master
Fixed crash executing TextEdit.new().set_draw_control_chars(true)
This commit is contained in:
commit
1ee61a501f
1 changed files with 3 additions and 1 deletions
|
@ -4332,7 +4332,9 @@ bool TextEdit::is_highlight_all_occurrences_enabled() const {
|
||||||
void TextEdit::set_draw_control_chars(bool p_draw_control_chars) {
|
void TextEdit::set_draw_control_chars(bool p_draw_control_chars) {
|
||||||
if (draw_control_chars != p_draw_control_chars) {
|
if (draw_control_chars != p_draw_control_chars) {
|
||||||
draw_control_chars = p_draw_control_chars;
|
draw_control_chars = p_draw_control_chars;
|
||||||
menu->set_item_checked(menu->get_item_index(MENU_DISPLAY_UCC), draw_control_chars);
|
if (menu) {
|
||||||
|
menu->set_item_checked(menu->get_item_index(MENU_DISPLAY_UCC), draw_control_chars);
|
||||||
|
}
|
||||||
text.set_draw_control_chars(draw_control_chars);
|
text.set_draw_control_chars(draw_control_chars);
|
||||||
text.invalidate_all();
|
text.invalidate_all();
|
||||||
update();
|
update();
|
||||||
|
|
Loading…
Reference in a new issue