Procházet zdrojové kódy

Merge pull request #69753 from lpares12/feat_meta_cursor

RichTextLabel: decouple meta cursor from underline
Rémi Verschelde před 2 roky
rodič
revize
d3e32698b4
1 změnil soubory, kde provedl 0 přidání a 4 odebrání
  1. 0 4
      scene/gui/rich_text_label.cpp

+ 0 - 4
scene/gui/rich_text_label.cpp

@@ -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;
 	}