GH-2238 fix issues with whitespace/newlines in folder and instance names
This commit is contained in:
parent
d5037d4f79
commit
59e2f52db7
4 changed files with 9 additions and 6 deletions
|
@ -244,7 +244,7 @@ QString BaseInstance::name() const
|
|||
|
||||
QString BaseInstance::windowTitle() const
|
||||
{
|
||||
return "MultiMC: " + name();
|
||||
return "MultiMC: " + name().replace(QRegExp("[ \n\r\t]+"), " ");
|
||||
}
|
||||
|
||||
// FIXME: why is this here? move it to MinecraftInstance!!!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue