diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-14 08:57:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-14 08:57:07 -0400 |
| commit | ca7aba129e501669269d8ec4ab9c83988dfc7e48 (patch) | |
| tree | b86ac76d4c9548e150de0d6e3d3dffd00a6388b0 | |
| parent | 6c881c8502cc6707b56676e767057dd4bda8d363 (diff) | |
| parent | 20c7b2f49859b14719e459e335816adff6689283 (diff) | |
Merge pull request #870 from isanae/clone-fix
Fixed exe cloning
| -rw-r--r-- | src/editexecutablesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editexecutablesdialog.cpp b/src/editexecutablesdialog.cpp index 3efadc4c..09210ddf 100644 --- a/src/editexecutablesdialog.cpp +++ b/src/editexecutablesdialog.cpp @@ -408,7 +408,7 @@ void EditExecutablesDialog::save() // get the new title, but ignore it if it's conflicting with an already // existing executable - QString newTitle = ui->title->text(); + QString newTitle = ui->title->text().trimmed(); if (isTitleConflicting(newTitle)) { newTitle = e->title(); } |
