X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.cpp;h=7711277e0a90f2d6c22348fc8ebb1e3188ad19f2;hb=88e5e5fd345c280b0927ad84785657cbc9e55f77;hp=e543b44fb328c8f0bc95a1d338631a02d8ac88eb;hpb=80fe0dbe7e4188c70519b8a5945fec466eea4456;p=lyx.git diff --git a/src/insets/InsetBox.cpp b/src/insets/InsetBox.cpp index e543b44fb3..7711277e0a 100644 --- a/src/insets/InsetBox.cpp +++ b/src/insets/InsetBox.cpp @@ -201,6 +201,17 @@ bool InsetBox::forcePlainLayout(idx_type) const } +bool InsetBox::needsCProtection(bool const maintext, bool const fragile) const +{ + // We need to cprotect boxes that use minipages as inner box + // in fragile context + if (fragile && params_.inner_box && !params_.use_parbox && !params_.use_makebox) + return true; + + return InsetText::needsCProtection(maintext, fragile); +} + + ColorCode InsetBox::backgroundColor(PainterInfo const &) const { // we only support background color for 3 types @@ -227,7 +238,9 @@ ColorCode InsetBox::backgroundColor(PainterInfo const &) const LyXAlignment InsetBox::contentAlignment() const { - if (!params_.use_makebox) + // Custom horizontal alignment is only allowed with a fixed width + // and if either makebox or no inner box are used + if (params_.width.empty() || !(params_.use_makebox || !params_.inner_box)) return LYX_ALIGN_NONE; // The default value below is actually irrelevant @@ -336,7 +349,7 @@ void InsetBox::latex(otexstream & os, OutputParams const & runparams) const string separation_string = params_.separation.asLatexString(); string shadowsize_string = params_.shadowsize.asLatexString(); bool stdwidth = false; - string const cprotect = hasCProtectContent() ? "\\cprotect" : string(); + string const cprotect = hasCProtectContent(runparams.moving_arg) ? "\\cprotect" : string(); // in general the overall width of some decorated boxes is wider thean the inner box // we could therefore calculate the real width for all sizes so that if the user wants // e.g. 0.1\columnwidth or 2cm he gets exactly this size