Fix sideset keyboard short cuts

\sideset1 can't be entered via keyboard, so I renamed the commands.
This commit is contained in:
Georg Baum 2013-02-26 21:38:27 +01:00
parent a43f45de6c
commit 6e2d8cf10a
6 changed files with 9 additions and 9 deletions

View File

@ -1110,9 +1110,9 @@ dist_imagesmath_DATA = \
images/math/shortrightarrow.png \ images/math/shortrightarrow.png \
images/math/shortuparrow.png \ images/math/shortuparrow.png \
images/math/sideset.png \ images/math/sideset.png \
images/math/sideset1.png \ images/math/sidesetl.png \
images/math/sideset2.png \ images/math/sidesetn.png \
images/math/sideset3.png \ images/math/sidesetr.png \
images/math/sigma.png \ images/math/sigma.png \
images/math/sigma2.png \ images/math/sigma2.png \
images/math/sim.png \ images/math/sim.png \

View File

Before

Width:  |  Height:  |  Size: 142 B

After

Width:  |  Height:  |  Size: 142 B

View File

Before

Width:  |  Height:  |  Size: 134 B

After

Width:  |  Height:  |  Size: 134 B

View File

Before

Width:  |  Height:  |  Size: 138 B

After

Width:  |  Height:  |  Size: 138 B

View File

@ -184,9 +184,9 @@ ToolbarSet
Item "Insert integral" "math-insert \int" Item "Insert integral" "math-insert \int"
Item "Insert product" "math-insert \prod" Item "Insert product" "math-insert \prod"
Item "Insert left/right side scripts" "math-insert \sideset" Item "Insert left/right side scripts" "math-insert \sideset"
Item "Insert right side scripts" "math-insert \sideset1" Item "Insert right side scripts" "math-insert \sidesetr"
Item "Insert left side scripts" "math-insert \sideset2" Item "Insert left side scripts" "math-insert \sidesetl"
Item "Insert side scripts" "math-insert \sideset3" Item "Insert side scripts" "math-insert \sidesetn"
Separator Separator
Item "Insert ( )" "math-delim ( )" Item "Insert ( )" "math-delim ( )"
Item "Insert [ ]" "math-delim [ ]" Item "Insert [ ]" "math-delim [ ]"

View File

@ -539,11 +539,11 @@ MathAtom createInsetMath(docstring const & s, Buffer * buf)
if (s == "sideset") if (s == "sideset")
return MathAtom(new InsetMathSideset(buf, true, true)); return MathAtom(new InsetMathSideset(buf, true, true));
// The following 3 string values are only for math toolbar use, no LaTeX names // The following 3 string values are only for math toolbar use, no LaTeX names
if (s == "sideset1") if (s == "sidesetr")
return MathAtom(new InsetMathSideset(buf, false, true)); return MathAtom(new InsetMathSideset(buf, false, true));
if (s == "sideset2") if (s == "sidesetl")
return MathAtom(new InsetMathSideset(buf, true, false)); return MathAtom(new InsetMathSideset(buf, true, false));
if (s == "sideset3") if (s == "sidesetn")
return MathAtom(new InsetMathSideset(buf, false, false)); return MathAtom(new InsetMathSideset(buf, false, false));
if (isSpecialChar(s)) if (isSpecialChar(s))
return MathAtom(new InsetMathSpecialChar(s)); return MathAtom(new InsetMathSpecialChar(s));