From: Pavel Sanda Date: Sun, 2 Dec 2018 01:08:49 +0000 (+0100) Subject: Correctly update after buffer-anonymize in branch. X-Git-Tag: 2.3.2~7 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=566711b5ca3119b10a6d72c8e58979394e9e142a;p=features.git Correctly update after buffer-anonymize in branch. In master the screen update after buffer-anonymize happens without screenUpdate. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 1196874357..e572fb30a8 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -2963,6 +2963,7 @@ void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr) for ( ; cur ; cur.forwardPar()) cur.paragraph().anonymize(); dr.forceBufferUpdate(); + dr.screenUpdate(Update::Force); break; }