From 771673ccbbd4f677e106591ec4209c812659ac8a Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 14 Aug 2008 11:03:51 +0000 Subject: [PATCH] Fix bug 5149: Pasting outside math when cursor is inside http://bugzilla.lyx.org/show_bug.cgi?id=5149 Make sure that the cursor is set to the right place before doing a middle- button paste. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26161 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Text3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Text3.cpp b/src/Text3.cpp index 14f03da35e..d98635c9aa 100644 --- a/src/Text3.cpp +++ b/src/Text3.cpp @@ -1160,6 +1160,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd) case mouse_button::button2: // Middle mouse pasting. + bv->mouseSetCursor(cur); if (!cap::selection()) { // There is no local selection in the current buffer, so try to // paste primary selection instead. -- 2.39.2