From 0f20d8756e6d6842449e4249ba961178b24c72ee Mon Sep 17 00:00:00 2001 From: George Marques Date: Mon, 20 Jun 2016 18:39:37 -0300 Subject: [PATCH] Fix File.get_as_text() to return the whole file It was returning only from the cursor forward. --- core/bind/core_bind.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index bc08c64d05b..ace7e7c7b7a 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -1566,7 +1566,12 @@ DVector _File::get_buffer(int p_length) const{ String _File::get_as_text() const { + ERR_FAIL_COND_V(!f, String()); + String text; + size_t original_pos = f->get_pos(); + f->seek(0); + String l = get_line(); while(!eof_reached()) { text+=l+"\n"; @@ -1574,6 +1579,8 @@ String _File::get_as_text() const { } text+=l; + f->seek(original_pos); + return text;