mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
fix mathed regression (pullArg was gone)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17634 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8acae54241
commit
6729fb414c
@ -786,8 +786,10 @@ bool LCursor::backspace()
|
|||||||
// [|], can not delete from inside
|
// [|], can not delete from inside
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
// move to left
|
if (inMathed())
|
||||||
popLeft();
|
pullArg();
|
||||||
|
else
|
||||||
|
popLeft();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user