mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
Don't allow new pages within tables!
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26105 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a457ab321f
commit
8498a50c64
@ -3796,6 +3796,10 @@ bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|||||||
return cell(cur.idx())->getStatus(cur, cmd, status);
|
return cell(cur.idx())->getStatus(cur, cmd, status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case LFUN_NEWPAGE_INSERT:
|
||||||
|
status.setEnabled(false);
|
||||||
|
return true;
|
||||||
|
|
||||||
case LFUN_PASTE:
|
case LFUN_PASTE:
|
||||||
if (cur.isMultiCell()) {
|
if (cur.isMultiCell()) {
|
||||||
status.setEnabled(false);
|
status.setEnabled(false);
|
||||||
|
Loading…
Reference in New Issue
Block a user