diff options
| author | Kai Uwe Broulik <[email protected]> | 2013-01-09 22:10:04 +0100 |
|---|---|---|
| committer | Kai Uwe Broulik <[email protected]> | 2013-01-09 22:15:56 +0100 |
| commit | d7373195f0a4bc9ec22332ad5260aa22e556d2d5 (patch) | |
| tree | a0f0dbb58b44f0e341843ce3237d20dd6d7d0615 /src/panels | |
| parent | 4fd99ef4a3a8148ac5a692984fbd996ba6ecfed8 (diff) | |
Fix information panel interpreting html tags
Only fixes the most obvious file name, the other entries in the table
probably have to be fixed in the FileMetaDataWidget.
REVIEW: 108307
BUG: 262464
(cherry picked from commit 3d7d900d2830c71255ff8c02f5f7439224cd4122)
Diffstat (limited to 'src/panels')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index 85571befd..9b0dd0092 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -105,6 +105,7 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) : QFont font = m_nameLabel->font(); font.setBold(true); m_nameLabel->setFont(font); + m_nameLabel->setTextFormat(Qt::PlainText); m_nameLabel->setAlignment(Qt::AlignHCenter); m_nameLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
