Merge pull request #21977 from guilhermefelipecgs/fix_text_edit

Fix default_cursor_shape for TextEdit
This commit is contained in:
Rémi Verschelde 2018-09-12 21:40:05 +02:00 committed by GitHub
commit 4cd3dd8219
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4174,7 +4174,7 @@ Control::CursorShape TextEdit::get_cursor_shape(const Point2 &p_pos) const {
}
}
return CURSOR_IBEAM;
return get_default_cursor_shape();
}
void TextEdit::set_text(String p_text) {
@ -6256,6 +6256,7 @@ TextEdit::TextEdit() {
breakpoint_gutter_width = 0;
cache.fold_gutter_width = 0;
fold_gutter_width = 0;
set_default_cursor_shape(CURSOR_IBEAM);
indent_size = 4;
text.set_indent_size(indent_size);