┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorEmmanuel Pescosta <[email protected]>2013-01-11 17:27:53 +0100
committerEmmanuel Pescosta <[email protected]>2013-01-11 17:27:53 +0100
commite7c4b060ad95195da143b7528ff3b5f026400234 (patch)
tree9eebce2463407a798a46e8f5adb79871006638f8 /src/views
parentd3b92d2d670f39aee1b48e676cdfa4067211f515 (diff)
Show the file name as plain text in the file-metadata-tooltip
FIXED-IN: 4.10 BUG: 262464 REVIEW: 108336
Diffstat (limited to 'src/views')
-rw-r--r--src/views/tooltips/filemetadatatooltip.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/views/tooltips/filemetadatatooltip.cpp b/src/views/tooltips/filemetadatatooltip.cpp
index 77a07e268..c22f6be5d 100644
--- a/src/views/tooltips/filemetadatatooltip.cpp
+++ b/src/views/tooltips/filemetadatatooltip.cpp
@@ -55,6 +55,7 @@ FileMetaDataToolTip::FileMetaDataToolTip(QWidget* parent) :
// Create widget for file name
m_name = new QLabel(this);
m_name->setForegroundRole(QPalette::ToolTipText);
+ m_name->setTextFormat(Qt::PlainText);
QFont font = m_name->font();
font.setBold(true);
m_name->setFont(font);