mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
ws
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6286 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
eb2886967b
commit
ee3abc9c47
@ -420,12 +420,13 @@ bool MathCursor::backspace()
|
||||
}
|
||||
|
||||
if (pos() == 0) {
|
||||
if (par()->ncols() == 1 && par()->nrows() == 1 && depth() == 1 && size() == 0)
|
||||
if (par()->ncols() == 1 &&
|
||||
par()->nrows() == 1 &&
|
||||
depth() == 1 &&
|
||||
size() == 0)
|
||||
return false;
|
||||
else{
|
||||
pullArg();
|
||||
return true;
|
||||
}
|
||||
pullArg();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (inMacroMode()) {
|
||||
@ -438,7 +439,7 @@ bool MathCursor::backspace()
|
||||
|
||||
--pos();
|
||||
plainErase();
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user