Remove leading and trailing whitespace when choosing filenames. Fixes issue #401.

This commit is contained in:
sledgehammer999 2013-02-07 20:46:40 +02:00
commit a2e4e2ad37
3 changed files with 3 additions and 3 deletions

View file

@ -593,7 +593,7 @@ void TransferListWidget::askNewLabelForSelection() {
bool invalid;
do {
invalid = false;
const QString label = QInputDialog::getText(this, tr("New Label"), tr("Label:"), QLineEdit::Normal, "", &ok);
const QString label = QInputDialog::getText(this, tr("New Label"), tr("Label:"), QLineEdit::Normal, "", &ok).trimmed();
if (ok && !label.isEmpty()) {
if (fsutils::isValidFileSystemName(label)) {
setSelectionLabel(label);