From: Kai Uwe Broulik Date: Wed, 9 Jan 2013 21:10:04 +0000 (+0100) Subject: Fix information panel interpreting html tags X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/1877eb74e8eaf93cc9a3771d4643ce0d34d7d8d7 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 --- 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);