From: Richard Heck Date: Tue, 3 Oct 2017 21:21:21 +0000 (-0400) Subject: Reset cursor before beginning reload sequence. X-Git-Tag: 2.2.4~80 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6d116630901ec0702cc537cf0a7db78854ff16ab;p=features.git Reset cursor before beginning reload sequence. (cherry picked from commit af381a2fb25df71b43668fa46ba9b6395f266751) --- diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index bb54b0aa5c..0dd47a2a3f 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -3057,6 +3057,7 @@ static bool ensureBufferClean(Buffer * buffer) bool GuiView::reloadBuffer(Buffer & buf) { + currentBufferView()->cursor().reset(); Buffer::ReadStatus status = buf.reload(); return status == Buffer::ReadSuccess; }