git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-06-24 17:59:11 +00:00
parent de48d23893
commit 663c61557d
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-06-24 André Pönitz <poenitz@gmx.net>
* lyxfunc.C: fix #487
2002-06-21 John Levon <moz@compsoc.man.ac.uk>
* lyxrc.h:
@ -113,7 +118,7 @@
* LaTeX.C:
* vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
2002-06-12 "Andrew Zabolotny" <zap@cobra.ru>
2002-06-12 Andrew Zabolotny <zap@cobra.ru>
* kbmap.C (getiso): add support for cyrillic and greek

View File

@ -521,6 +521,12 @@ FuncStatus LyXFunc::getStatus(kb_action action,
flag.setOnOff(type == LM_OT_EQNARRAY);
} else if (argument == "align") {
flag.setOnOff(type == LM_OT_ALIGN);
} else if (argument == "alignat") {
flag.setOnOff(type == LM_OT_ALIGNAT);
} else if (argument == "xalignat") {
flag.setOnOff(type == LM_OT_XALIGNAT);
} else if (argument == "xxalignat") {
flag.setOnOff(type == LM_OT_XXALIGNAT);
} else if (argument == "none") {
flag.setOnOff(type == LM_OT_NONE);
} else {