From f6f475e6ba1b52baeacdaf9aa92960650a828dfc Mon Sep 17 00:00:00 2001 From: Paulb23 Date: Thu, 23 Nov 2017 20:37:08 +0000 Subject: [PATCH] Fixed not be able to unfold the last line --- scene/gui/text_edit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 26ac4c5a7d..b5e809fd03 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -4536,7 +4536,7 @@ bool TextEdit::can_fold(int p_line) const { bool TextEdit::is_folded(int p_line) const { ERR_FAIL_INDEX_V(p_line, text.size(), false); - if (p_line + 1 >= text.size() - 1) + if (p_line + 1 >= text.size()) return false; if (!is_line_hidden(p_line) && is_line_hidden(p_line + 1)) return true;