Browse Source

Label::set_lines_skipped Fail if passed a negative value

(cherry picked from commit d7bb7cad47485e81f1d4b6bca42101d0613da0d6)
kleonc 4 năm trước cách đây
mục cha
commit
566ad4fd22
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scene/gui/label.cpp

+ 1 - 1
scene/gui/label.cpp

@@ -630,7 +630,7 @@ float Label::get_percent_visible() const {
 }
 
 void Label::set_lines_skipped(int p_lines) {
-
+	ERR_FAIL_COND(p_lines < 0);
 	lines_skipped = p_lines;
 	update();
 }