From: Rafael Fernández López Date: Wed, 17 Oct 2007 22:16:31 +0000 (+0000) Subject: On the Information panel the further information such as "Date", "Size", "Type" was... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/5e62bb5709b3d9a4f70bdd3a23ac66c59aec8ddb On the Information panel the further information such as "Date", "Size", "Type" was being cut off if it was being shrinked. That shouldn't happen. This prevents this information to be hidden or cut off, and so this is always shown. Albert: I also solved the previous bug you reported (places view not showing selected items at the first click) on a different commit CCMAIL: peter.penz@gmx.at CCMAIL: aacid@kde.org svn path=/trunk/KDE/kdebase/apps/; revision=726522 --- diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index b2705ec7f..e1bf12702 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -77,8 +77,9 @@ InfoSidebarPage::InfoSidebarPage(QWidget* parent) : // general information m_infoLabel = new QLabel(this); - m_infoLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); + m_infoLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); m_infoLabel->setTextFormat(Qt::RichText); + m_infoLabel->setWordWrap(true); if (MetaDataWidget::metaDataAvailable()) { m_metadataWidget = new MetaDataWidget(this);