Merge pull request #69753 from lpares12/feat_meta_cursor

RichTextLabel: decouple meta cursor from underline
This commit is contained in:
Rémi Verschelde 2022-12-09 18:06:11 +01:00
commit d3e32698b4
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1854,10 +1854,6 @@ void RichTextLabel::_notification(int p_what) {
}
Control::CursorShape RichTextLabel::get_cursor_shape(const Point2 &p_pos) const {
if (!underline_meta) {
return get_default_cursor_shape();
}
if (selection.click_item) {
return CURSOR_IBEAM;
}