X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.cpp;h=240126d122e2d774f4531ff340baa1ccd64cc499;hb=f6d505c1ee494ab0d30eebba86082c86a915e1df;hp=7cbd297111704f19019feaf41104816d16a50a51;hpb=4c7a5d00245799695ea81aa0192151eed8f9c5fb;p=lyx.git diff --git a/src/mathed/InsetMathSplit.cpp b/src/mathed/InsetMathSplit.cpp index 7cbd297111..240126d122 100644 --- a/src/mathed/InsetMathSplit.cpp +++ b/src/mathed/InsetMathSplit.cpp @@ -69,7 +69,7 @@ void InsetMathSplit::draw(PainterInfo & pi, int x, int y) const bool InsetMathSplit::getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const { - switch (cmd.action_) { + switch (cmd.action()) { case LFUN_INSET_MODIFY: { istringstream is(to_utf8(cmd.argument())); string s; @@ -147,6 +147,8 @@ void InsetMathSplit::validate(LaTeXFeatures & features) const if (name_ == "split" || name_ == "gathered" || name_ == "aligned" || name_ == "alignedat") features.require("amsmath"); + else if (name_ == "lgathered" || name_ == "rgathered") + features.require("mathtools"); InsetMathGrid::validate(features); }