From af381a2fb25df71b43668fa46ba9b6395f266751 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Tue, 3 Oct 2017 17:21:21 -0400 Subject: [PATCH] Reset cursor before beginning reload sequence. --- src/frontends/qt4/GuiView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 1a1ca54be1..b0d7c86fd0 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -3173,6 +3173,7 @@ static bool ensureBufferClean(Buffer * buffer) bool GuiView::reloadBuffer(Buffer & buf) { + currentBufferView()->cursor().reset(); Buffer::ReadStatus status = buf.reload(); return status == Buffer::ReadSuccess; } -- 2.39.2