From 1877eb74e8eaf93cc9a3771d4643ce0d34d7d8d7 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Wed, 9 Jan 2013 22:10:04 +0100 Subject: [PATCH] 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 --- src/panels/information/informationpanelcontent.cpp | 1 + 1 file changed, 1 insertion(+) 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); -- 2.47.3