]> git.lyx.org Git - features.git/blobdiff - src/Layout.cpp
Allow to separate menu string from label string for arguments
[features.git] / src / Layout.cpp
index 2ff77edafcb82ef36e2dea01e762f576441cc779..1c8aac8ad4a04be7358fcc691f0450b7d18b21bd 100644 (file)
@@ -900,6 +900,9 @@ void Layout::readArgument(Lexer & lex)
                } else if (tok == "labelstring") {
                        lex.next();
                        arg.labelstring = lex.getDocString();
+               } else if (tok == "menustring") {
+                       lex.next();
+                       arg.menustring = lex.getDocString();
                } else if (tok == "mandatory") {
                        lex.next();
                        arg.mandatory = lex.getBool();