From: Richard Heck Date: Tue, 3 Oct 2017 21:21:21 +0000 (-0400) Subject: Reset cursor before beginning reload sequence. X-Git-Tag: lyx-2.4.0dev-acb2ca7b~4497 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=af381a2fb25df71b43668fa46ba9b6395f266751;p=features.git Reset cursor before beginning reload sequence. --- 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; }