From d3c786eed6e9d4b10617cec2658569332934254a Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Sun, 1 Nov 2009 22:16:49 +0000 Subject: [PATCH] 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 --- src/mathed/InsetMathBox.cpp | 1 + 1 file changed, 1 insertion(+) 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); }