From: André Pönitz Date: Fri, 25 Oct 2002 06:44:40 +0000 (+0000) Subject: math LFUN_BOLD produce mathbf instead of textbf X-Git-Tag: 1.6.10~18089 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3b0188912a7875929e1238d01695616ea5df359d;p=features.git math LFUN_BOLD produce mathbf instead of textbf git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5510 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/formulabase.C b/src/mathed/formulabase.C index 358a77e6dc..0fce71e577 100644 --- a/src/mathed/formulabase.C +++ b/src/mathed/formulabase.C @@ -609,8 +609,8 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd) // Math fonts case LFUN_GREEK_TOGGLE: handleFont(bv, cmd.argument, "lyxgreek"); break; - case LFUN_BOLD: handleFont(bv, cmd.argument, "textbf"); break; - case LFUN_SANS: handleFont(bv, cmd.argument, "textsf"); break; + case LFUN_BOLD: handleFont(bv, cmd.argument, "mathbf"); break; + case LFUN_SANS: handleFont(bv, cmd.argument, "mathsf"); break; case LFUN_EMPH: handleFont(bv, cmd.argument, "mathcal"); break; case LFUN_ROMAN: handleFont(bv, cmd.argument, "mathrm"); break; case LFUN_CODE: handleFont(bv, cmd.argument, "texttt"); break;