mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
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:
parent
5c4420b28a
commit
5e62bb5709
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue