mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-13 20:09:59 +00:00
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
This commit is contained in:
parent
5e9b947e55
commit
3b0188912a
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user