From e901487ed881046cb435c866337ac296f47d734a Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Tue, 31 Jul 2007 13:49:36 +0000 Subject: [PATCH] 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 --- src/mathed/ChangeLog | 5 +++++ src/mathed/math_nestinset.C | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 08e9d8b464..725d6a36db 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,8 @@ +2007-07-31 Enrico Forestieri + + * math_nestinset.C (getStatus): enable the math-matrix and the + math-delimiter dialogs. + 2007-07-12 André Pönitz * math_oversetinset.C (draw): fix drawing when the first argument diff --git a/src/mathed/math_nestinset.C b/src/mathed/math_nestinset.C index 38446f253c..af9aea2a00 100644 --- a/src/mathed/math_nestinset.C +++ b/src/mathed/math_nestinset.C @@ -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; }