From: Uwe Stöhr Date: Sun, 9 Mar 2008 23:23:50 +0000 (+0000) Subject: InsetMathNest.cpp: Ctrl-b uses now \boldsymbol (fixes http://bugzilla.lyx.org/show_bu... X-Git-Tag: 1.6.10~5750 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8151dd58523b77716dc9139c5e5f8593394dfa87;p=features.git InsetMathNest.cpp: Ctrl-b uses now \boldsymbol (fixes http://bugzilla.lyx.org/show_bug.cgi?id=499) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23608 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index b51e20c38a..9d173aac87 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -808,7 +808,7 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) if (currentMode() == TEXT_MODE) handleFont(cur, cmd.argument(), "textbf"); else - handleFont(cur, cmd.argument(), "mathbf"); + handleFont(cur, cmd.argument(), "boldsymbol"); break; case LFUN_FONT_SANS: if (currentMode() == TEXT_MODE)