From: Jean-Marc Lasgouttes Date: Wed, 21 Sep 2016 14:11:53 +0000 (+0200) Subject: Do not hardcode required packages for Note inset X-Git-Tag: 2.2.3~228 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=181ecc51a7d758f2d5d24f8ba571f7d313ed31ff;p=features.git Do not hardcode required packages for Note inset This does not change the default behavior, but allows to customize it. (cherry picked from commit db1270765573eafc453fe903fcfb6f9ba91f9f31) --- diff --git a/lib/layouts/stdinsets.inc b/lib/layouts/stdinsets.inc index 7432b29069..5d07e289a7 100644 --- a/lib/layouts/stdinsets.inc +++ b/lib/layouts/stdinsets.inc @@ -115,6 +115,7 @@ InsetLayout Note:Comment LabelString Comment LatexType environment LatexName comment + Requires verbatim BgColor commentbg LabelFont Color comment @@ -151,6 +152,7 @@ InsetLayout Note:Greyedout LabelString Greyedout LatexType environment LatexName lyxgreyedout + Requires color,lyxgreyedout BgColor greyedoutbg Font Color greyedouttext diff --git a/src/insets/InsetNote.cpp b/src/insets/InsetNote.cpp index e483cf2e10..3f422774c1 100644 --- a/src/insets/InsetNote.cpp +++ b/src/insets/InsetNote.cpp @@ -329,15 +329,15 @@ void InsetNote::validate(LaTeXFeatures & features) const { switch (params_.type) { case InsetNoteParams::Comment: - features.require("verbatim"); if (features.runparams().flavor == OutputParams::HTML) // we do output this but set display to "none" by default, // but people might want to use it. InsetCollapsable::validate(features); + else + // Only do the requires + features.useInsetLayout(getLayout()); break; case InsetNoteParams::Greyedout: - features.require("color"); - features.require("lyxgreyedout"); InsetCollapsable::validate(features); break; case InsetNoteParams::Note: diff --git a/status.22x b/status.22x index ea926585a7..acae4f6b17 100644 --- a/status.22x +++ b/status.22x @@ -36,6 +36,8 @@ What's new * DOCUMENT INPUT/OUTPUT +- Do not hardcode required packages for Note inset. + * LYX2LYX