diff options
| author | Rafael Fernández López <[email protected]> | 2007-10-17 22:16:31 +0000 |
|---|---|---|
| committer | Rafael Fernández López <[email protected]> | 2007-10-17 22:16:31 +0000 |
| commit | 5e62bb5709b3d9a4f70bdd3a23ac66c59aec8ddb (patch) | |
| tree | bd6d0aab0baeb149ad729417cd659a36b7ad30e9 /src | |
| parent | 5c4420b28a741c3e626a256d9833ee1759caf568 (diff) | |
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: [email protected]
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=726522
Diffstat (limited to 'src')
| -rw-r--r-- | src/infosidebarpage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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); |
