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
This commit is contained in:
Rafael Fernández López 2007-10-17 22:16:31 +00:00
parent 5c4420b28a
commit 5e62bb5709

View file

@ -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);