Amend 3698281943 once more

We need to trim off tabs and spaces
This commit is contained in:
Juergen Spitzmueller 2023-12-03 11:18:42 +01:00
parent 4ba94f74a5
commit ac5cc01717

View File

@ -892,7 +892,7 @@ void InsetLayout::readArgument(Lexer & lex)
arg.tooltip = lex.getDocString();
} else if (tok == "requires") {
lex.eatLine();
arg.required = lex.getString();
arg.required = trim(lex.getString(true));
} else if (tok == "decoration") {
lex.next();
arg.decoration = lex.getString();