浏览代码

Merge pull request #29174 from Chaosus/fix_line_wrap_output

Fix "Index out of size" TextEdit's spam to output (when using Expression nodes in the visual shaders)
Rémi Verschelde 6 年之前
父节点
当前提交
556ee71277
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scene/gui/text_edit.cpp

+ 1 - 1
scene/gui/text_edit.cpp

@@ -4169,7 +4169,7 @@ void TextEdit::_scroll_moved(double p_to_val) {
 		int v_scroll_i = floor(get_v_scroll());
 		int sc = 0;
 		int n_line;
-		for (n_line = 0; n_line < text.size(); n_line++) {
+		for (n_line = 0; n_line < text.size() - 1; n_line++) {
 			if (!is_line_hidden(n_line)) {
 				sc++;
 				sc += times_line_wraps(n_line);