##// END OF EJS Templates
Fixes the ability to enter a name with only spaces when renaming variables
Alexandre Leroux -
r713:0bbf90c7e3d0
parent child
Show More
@@ -25,7 +25,7 RenameVariableDialog::~RenameVariableDialog() noexcept
25 25
26 26 QString RenameVariableDialog::name() const noexcept
27 27 {
28 return ui->nameLineEdit->text();
28 return ui->nameLineEdit->text().trimmed();
29 29 }
30 30
31 31 void RenameVariableDialog::accept()
@@ -38,7 +38,7 void RenameVariableDialog::accept()
38 38 };
39 39
40 40 // Empty name
41 auto name = ui->nameLineEdit->text();
41 auto name = this->name();
42 42 if (name.isEmpty()) {
43 43 invalidateInput(tr("A variable name must be specified"));
44 44 return;
General Comments 0
You need to be logged in to leave comments. Login now