Explorar o código

Calculate LineEdit selection with secret character

(cherry picked from commit 395a038c85ee0b99045a6edf467f482aa7106c71)
Darren Kaste %!s(int64=5) %!d(string=hai) anos
pai
achega
f657614760
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      scene/gui/line_edit.cpp

+ 5 - 1
scene/gui/line_edit.cpp

@@ -1066,7 +1066,11 @@ void LineEdit::set_cursor_at_pixel_pos(int p_x) {
 
 		int char_w = 0;
 		if (font != NULL) {
-			char_w = font->get_char_size(text[ofs]).width;
+			if (is_secret()) {
+				char_w = font->get_char_size(secret_character[0]).width;
+			} else {
+				char_w = font->get_char_size(text[ofs]).width;
+			}
 		}
 		pixel_ofs += char_w;