Jelajahi Sumber

Merge pull request #3007 from neikeq/fix_line_edit

Fix LineEdit cursor
Rémi Verschelde 9 tahun lalu
induk
melakukan
c667bde183
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      scene/gui/line_edit.cpp

+ 1 - 1
scene/gui/line_edit.cpp

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