X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.cpp;h=2e611ffd30d14e818c78b09952a59a8bc7155d6b;hb=541828ebf50876780d90766d84ba01246440c9be;hp=ec48bd20b1184cf5904f8728b20d25382827d510;hpb=07c49ed3248540ae04246b99c80467f71d36fbca;p=features.git diff --git a/src/insets/InsetBox.cpp b/src/insets/InsetBox.cpp index ec48bd20b1..2e611ffd30 100644 --- a/src/insets/InsetBox.cpp +++ b/src/insets/InsetBox.cpp @@ -190,10 +190,19 @@ void InsetBox::doDispatch(Cursor & cur, FuncRequest & cmd) case LFUN_INSET_MODIFY: { //lyxerr << "InsetBox::dispatch MODIFY" << endl; + string const first_arg = cmd.getArg(0); + bool const change_type = first_arg == "changetype"; + bool const for_box = first_arg == "box"; + if (!change_type && !for_box) { + // not for us + // this will not be handled higher up + cur.undispatched(); + return; + } cur.recordUndoInset(ATOMIC_UNDO, this); - if (cmd.getArg(0) == "changetype") { + if (change_type) params_.type = cmd.getArg(1); - } else + else // if (for_box) string2params(to_utf8(cmd.argument()), params_); setButtonLabel(); break; @@ -211,20 +220,26 @@ bool InsetBox::getStatus(Cursor & cur, FuncRequest const & cmd, { switch (cmd.action()) { - case LFUN_INSET_MODIFY: - if (cmd.getArg(0) == "changetype") { + case LFUN_INSET_MODIFY: { + string const first_arg = cmd.getArg(0); + if (first_arg == "changetype") { string const type = cmd.getArg(1); flag.setOnOff(type == params_.type); flag.setEnabled(!params_.inner_box || type != "Framed"); return true; } + if (first_arg == "box") { + flag.setEnabled(true); + return true; + } return InsetCollapsable::getStatus(cur, cmd, flag); + } case LFUN_INSET_DIALOG_UPDATE: flag.setEnabled(true); return true; - case LFUN_BREAK_PARAGRAPH: + case LFUN_PARAGRAPH_BREAK: if ((params_.inner_box && !params_.use_makebox) || params_.type == "Shaded" || params_.type == "Framed") return InsetCollapsable::getStatus(cur, cmd, flag);