mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-14 01:22:33 +00:00
Fix crash with S-Home while entering a macro name (bug 2046)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10527 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4e51468a4f
commit
6019b31bbe
@ -1,3 +1,8 @@
|
|||||||
|
2005-10-05 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
|
* math_cursor.C (home, end): close macro before handling selection
|
||||||
|
(bug 2046)
|
||||||
|
|
||||||
2005-07-25 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
2005-07-25 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||||
|
|
||||||
* math_factory.C (initSymbols): Don't require wasysym for the wasy
|
* math_factory.C (initSymbols): Don't require wasysym for the wasy
|
||||||
|
@ -292,8 +292,8 @@ bool MathCursor::home(bool sel)
|
|||||||
{
|
{
|
||||||
dump("home 1");
|
dump("home 1");
|
||||||
autocorrect_ = false;
|
autocorrect_ = false;
|
||||||
selHandle(sel);
|
|
||||||
macroModeClose();
|
macroModeClose();
|
||||||
|
selHandle(sel);
|
||||||
if (!par()->idxHome(idx(), pos()))
|
if (!par()->idxHome(idx(), pos()))
|
||||||
return popLeft();
|
return popLeft();
|
||||||
dump("home 2");
|
dump("home 2");
|
||||||
@ -306,8 +306,8 @@ bool MathCursor::end(bool sel)
|
|||||||
{
|
{
|
||||||
dump("end 1");
|
dump("end 1");
|
||||||
autocorrect_ = false;
|
autocorrect_ = false;
|
||||||
selHandle(sel);
|
|
||||||
macroModeClose();
|
macroModeClose();
|
||||||
|
selHandle(sel);
|
||||||
if (!par()->idxEnd(idx(), pos()))
|
if (!par()->idxEnd(idx(), pos()))
|
||||||
return popRight();
|
return popRight();
|
||||||
dump("end 2");
|
dump("end 2");
|
||||||
|
@ -19,6 +19,7 @@ What's new
|
|||||||
|
|
||||||
** Updates
|
** Updates
|
||||||
|
|
||||||
|
- Update German Introduction and Tutorial.
|
||||||
|
|
||||||
** Bug fixes
|
** Bug fixes
|
||||||
|
|
||||||
@ -26,6 +27,8 @@ What's new
|
|||||||
|
|
||||||
- Don't load the wasysym package automatically anymore (bug 1942)
|
- Don't load the wasysym package automatically anymore (bug 1942)
|
||||||
|
|
||||||
|
- Fix crash with S-Home while entering a macro name (bug 2046)
|
||||||
|
|
||||||
* User Interface:
|
* User Interface:
|
||||||
|
|
||||||
- Fix wrong path when drag-and-dropping files on Windows. [Qt only]
|
- Fix wrong path when drag-and-dropping files on Windows. [Qt only]
|
||||||
|
Loading…
Reference in New Issue
Block a user