Fig math-matrix and math-delimiter dialogs with xforms frontend

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@19253 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-07-31 13:49:36 +00:00
parent aa13c0647a
commit e901487ed8
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-07-31 Enrico Forestieri <forenr@tlc.unipr.it>
* math_nestinset.C (getStatus): enable the math-matrix and the
math-delimiter dialogs.
2007-07-12 André Pönitz <poenitz@lyx.org>
* math_oversetinset.C (draw): fix drawing when the first argument

View File

@ -1046,7 +1046,8 @@ bool MathNestInset::getStatus(LCursor & cur, FuncRequest const & cmd,
// getStatus is not called with a valid reference and the
// dialog would not be applyable.
string const name = cmd.getArg(0);
flag.enabled(name == "ref");
flag.enabled(name == "ref" ||
name == "mathdelimiter" || name == "mathmatrix");
break;
}