From: Vincent van Ravesteijn Date: Sun, 1 Nov 2009 22:16:49 +0000 (+0000) Subject: Fix bug #6297: Use of Fraktur font in boxed equation does not automatically include... X-Git-Tag: 2.0.0~5248 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d3c786eed6e9d4b10617cec2658569332934254a;p=features.git Fix bug #6297: Use of Fraktur font in boxed equation does not automatically include amssymb. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31819 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathBox.cpp b/src/mathed/InsetMathBox.cpp index 3e101232da..ab73d91448 100644 --- a/src/mathed/InsetMathBox.cpp +++ b/src/mathed/InsetMathBox.cpp @@ -289,6 +289,7 @@ void InsetMathBoxed::infoize(odocstream & os) const void InsetMathBoxed::validate(LaTeXFeatures & features) const { features.require("amsmath"); + InsetMathNest::validate(features); }