mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
Fixed loading mpds with spaces in model names.
This commit is contained in:
parent
4b82e75f5b
commit
93363c1069
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ void lcModelProperties::ParseLDrawLine(QTextStream& Stream)
|
|||
Stream >> Token;
|
||||
|
||||
if (Token == QLatin1String("NAME"))
|
||||
Stream >> mName;
|
||||
mName = Stream.readAll().trimmed();
|
||||
else if (Token == QLatin1String("AUTHOR"))
|
||||
Stream >> mAuthor;
|
||||
else if (Token == QLatin1String("DESCRIPTION"))
|
||||
|
|
Loading…
Reference in a new issue