* src/insets/insettabular.C

(InsetTabular::getStatus): Correctly enable LFUN_PASTE when the
	special tabular clipboard is empty by removing an errornous
	fall-through to LFUN_INSET_MODIFY


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16495 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2007-01-04 11:05:22 +00:00
parent 129f5b6431
commit 9479b1323f

View File

@ -1036,7 +1036,8 @@ bool InsetTabular::getStatus(LCursor & cur, FuncRequest const & cmd,
if (tabularStackDirty()) {
status.enabled(true);
return true;
}
} else
return cell(cur.idx())->getStatus(cur, cmd, status);
case LFUN_INSET_MODIFY:
if (translate(cmd.getArg(0)) == TABULAR_CODE) {