From: Pavel Sanda Date: Sat, 14 Jun 2008 18:38:14 +0000 (+0000) Subject: Ressurect LFUN_MATH_SIZE, set toolbars accordingly. X-Git-Tag: 1.6.10~4397 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=cb5ce8348b25cb68c02cf349fd58d0d683e28f78;p=features.git Ressurect LFUN_MATH_SIZE, set toolbars accordingly. http://thread.gmane.org/gmane.editors.lyx.devel/108469 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25250 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/ui/stdtoolbars.inc b/lib/ui/stdtoolbars.inc index 2bf0ede5db..707aca92fa 100644 --- a/lib/ui/stdtoolbars.inc +++ b/lib/ui/stdtoolbars.inc @@ -285,10 +285,10 @@ ToolbarSet End Toolbar "style" "Styles" - Item "Display style \\displaystyle" "math-insert \displaystyle" - Item "Normal text style \\textstyle" "math-insert \textstyle" - Item "Script (small) style \\scriptstyle" "math-insert \scriptstyle" - Item "Scriptscript (smaller) style \\scriptscriptstyle" "math-insert \scriptscriptstyle" + Item "Display style \\displaystyle" "math-size \displaystyle" + Item "Normal text style \\textstyle" "math-size \textstyle" + Item "Script (small) style \\scriptstyle" "math-size \scriptstyle" + Item "Scriptscript (smaller) style \\scriptscriptstyle" "math-size \scriptscriptstyle" End Toolbar "frac-square" "Fractions" diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 57f2fb4101..883a7606de 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -960,12 +960,11 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) break; } - case LFUN_MATH_SIZE: -#if 0 - cur.recordUndoSelection(); - cur.setSize(arg); -#endif + case LFUN_MATH_SIZE: { + FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, cmd.argument()); + doDispatch(cur, fr); break; + } case LFUN_MATH_MATRIX: { cur.recordUndo();