GH-2355 Do not allow instances to be created with whitespace prefix or suffix
This commit is contained in:
parent
4169f53b19
commit
12f2716f31
2 changed files with 16 additions and 6 deletions
|
@ -165,15 +165,15 @@ void NewInstanceDialog::updateDialogState()
|
|||
|
||||
QString NewInstanceDialog::instName() const
|
||||
{
|
||||
auto result = ui->instNameTextBox->text();
|
||||
auto result = ui->instNameTextBox->text().trimmed();
|
||||
if(result.size())
|
||||
{
|
||||
return result.trimmed();
|
||||
return result;
|
||||
}
|
||||
result = ui->instNameTextBox->placeholderText();
|
||||
result = ui->instNameTextBox->placeholderText().trimmed();
|
||||
if(result.size())
|
||||
{
|
||||
return result.trimmed();
|
||||
return result;
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue