From: Jürgen Vigna Date: Fri, 5 Apr 2002 12:31:42 +0000 (+0000) Subject: make a CURSOR update if we inserted a character (fix #312). X-Git-Tag: 1.6.10~19494 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=546d0f52c7d63f58e8853540d2b0201efa021971;p=features.git make a CURSOR update if we inserted a character (fix #312). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3910 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 3e112a1d9b..5d983029b6 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,8 @@ +2002-04-05 Juergen Vigna + + * insettext.C (localDispatch): make a CURSOR update if we inserted + a character. + 2002-04-04 Jean-Marc Lasgouttes * insetfloatlist.C (getScreenLabel): diff --git a/src/insets/insettext.C b/src/insets/insettext.C index 7448eb2fa2..41a4a1c978 100644 --- a/src/insets/insettext.C +++ b/src/insets/insettext.C @@ -1190,7 +1190,7 @@ InsetText::localDispatch(BufferView * bv, } } lt->selection.cursor = lt->cursor; - updwhat = CURSOR_PAR; + updwhat = CURSOR | CURSOR_PAR; updflag = true; result = DISPATCHED_NOUPDATE; break;