diff options
| author | Emmanuel Pescosta <[email protected]> | 2013-01-09 16:17:55 +0100 |
|---|---|---|
| committer | Emmanuel Pescosta <[email protected]> | 2013-01-09 16:17:55 +0100 |
| commit | f7216ca5911049a159b436683f65545c2f962770 (patch) | |
| tree | 5066c1be8ab56211ea03e4d39e274de918dae2f5 /src | |
| parent | 17136c5da5d83e689fb7e77e8f1195750137f22e (diff) | |
Show the file name as plain text in the rename dialog
BUG: 312812
BUG: 262464
FIXED-IN: 4.10
REVIEW: 108291
Diffstat (limited to 'src')
| -rw-r--r-- | src/views/renamedialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/views/renamedialog.cpp b/src/views/renamedialog.cpp index 65125c3aa..07add113a 100644 --- a/src/views/renamedialog.cpp +++ b/src/views/renamedialog.cpp @@ -72,6 +72,7 @@ RenameDialog::RenameDialog(QWidget *parent, const KFileItemList& items) : m_newName = items.first().name(); editLabel = new QLabel(i18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName), page); + editLabel->setTextFormat(Qt::PlainText); } else { m_newName = i18nc("@info:status", "New name #"); editLabel = new QLabel(i18ncp("@label:textbox", |
