From: Jay Freeman (saurik) Date: Thu, 13 Sep 2012 06:20:16 +0000 (-0700) Subject: After a window resize, calculate offset, not end. X-Git-Tag: v0.9.459~12 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/c584b893e1a1d9b4361d6f11605c46d102583572?ds=inline After a window resize, calculate offset, not end. --- diff --git a/Display.cpp b/Display.cpp index fbca8df..5e45c45 100644 --- a/Display.cpp +++ b/Display.cpp @@ -127,7 +127,7 @@ void CYDisplayUpdate() { if (width_ != width) { current_ = CYCursor(); CYDisplayOutput(NULL, width, prompt); - CYDisplayOutput(NULL, width, buffer, point_); + current_ = CYDisplayOutput(NULL, width, buffer, point_); } CYDisplayMove(CYCursor());