commit 66cfc6af3c764b6923aae6c134c43c2155317c6a
Author: Richard Kimberly Heck <rikih...@lyx.org>
Date:   Sat Jun 1 12:06:13 2024 -0400

    Remove setBuffer call in Cursor::push.
    
    This is potentially slow. It also should be unnecessary after
    some of JMarc's recent commits. See bug #13050.
---
 src/Cursor.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Cursor.cpp b/src/Cursor.cpp
index c1427f731a..cab25022d7 100644
--- a/src/Cursor.cpp
+++ b/src/Cursor.cpp
@@ -903,7 +903,8 @@ void Cursor::pop()
 void Cursor::push(Inset & inset)
 {
        push_back(CursorSlice(inset));
-       inset.setBuffer(*buffer());
+       // See bug #13050
+       // inset.setBuffer(*buffer());
 }
 
 
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to