From 5e62bb5709b3d9a4f70bdd3a23ac66c59aec8ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Wed, 17 Oct 2007 22:16:31 +0000 Subject: [PATCH] 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 --- src/infosidebarpage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index b2705ec7f1..e1bf12702f 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);