update status when depth change

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6724 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-04-07 05:22:35 +00:00
parent e3f870562d
commit a0f0debf63
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-04-07 John Levon <levon@movementarian.org>
* lyxfunc.C: note status changed after a depth change
2003-04-04 Angus Leeming <angus@localhost.localdomain>
* LaTeX.h: move AuxInfo operator==, != out of line.

View File

@ -1117,10 +1117,12 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
case LFUN_DEPTH_MIN:
changeDepth(view(), TEXT(false), DEC_DEPTH, false);
owner->view_state_changed();
break;
case LFUN_DEPTH_PLUS:
changeDepth(view(), TEXT(false), INC_DEPTH, false);
owner->view_state_changed();
break;
case LFUN_FREEFONT_APPLY: