Inserting an inline formula via the menu currently inserts a formula with the 
content "on". This is because the menu calls "math-mode on" instead of 
"math-mode" (like in 1.3). Is this a typo?

(The attached patch fixes it)

Jürgen
Index: stdmenus.ui
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/ui/stdmenus.ui,v
retrieving revision 1.36
diff -u -r1.36 stdmenus.ui
--- stdmenus.ui	7 Nov 2004 09:39:34 -0000	1.36
+++ stdmenus.ui	20 Dec 2004 10:58:57 -0000
@@ -275,14 +275,14 @@
 	End
 
 	Menu "insert_math"
-		Item "Inline Formula|I" "math-mode on"
+		Item "Inline Formula|I" "math-mode"
 		Item "Display Formula|D" "math-display"
-		Item "Eqnarray Environment|E" "command-sequence math-mode on; math-mutate eqnarray;"
-		Item "AMS align Environment|a" "command-sequence math-mode on; math-mutate align;"
-		Item "AMS alignat Environment|t" "command-sequence math-mode on; math-mutate alignat;"
-		Item "AMS flalign Environment|f" "command-sequence math-mode on; math-mutate flalign;"
-		Item "AMS gather Environment|g" "command-sequence math-mode on; math-mutate gather;"
-		Item "AMS multline Environment|m" "command-sequence math-mode on; math-mutate multline;"
+		Item "Eqnarray Environment|E" "command-sequence math-mode; math-mutate eqnarray;"
+		Item "AMS align Environment|a" "command-sequence math-mode; math-mutate align;"
+		Item "AMS alignat Environment|t" "command-sequence math-mode; math-mutate alignat;"
+		Item "AMS flalign Environment|f" "command-sequence math-mode; math-mutate flalign;"
+		Item "AMS gather Environment|g" "command-sequence math-mode; math-mutate gather;"
+		Item "AMS multline Environment|m" "command-sequence math-mode; math-mutate multline;"
 		Separator
 		Item "Array Environment|y" "math-matrix 2 2"
 		Item "Cases Environment|C" "math-insert \cases"

Reply via email to