diff options
| author | Peter Penz <[email protected]> | 2009-10-10 23:15:13 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-10-10 23:15:13 +0000 |
| commit | ba444ba8d070874411ad86674e185376c958f90d (patch) | |
| tree | be8790ed6aa9648a8293cd058af37321bc2b0963 /src/panels/information/commentwidget.cpp | |
| parent | 984378d7f7227f2b195133b33084e09f0e682583 (diff) | |
adjust margins + spacing
svn path=/trunk/KDE/kdebase/apps/; revision=1033755
Diffstat (limited to 'src/panels/information/commentwidget.cpp')
| -rw-r--r-- | src/panels/information/commentwidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/panels/information/commentwidget.cpp b/src/panels/information/commentwidget.cpp index 173a2ee6d..6ad80bf2c 100644 --- a/src/panels/information/commentwidget.cpp +++ b/src/panels/information/commentwidget.cpp @@ -35,9 +35,12 @@ CommentWidget::CommentWidget(QWidget* parent) : { m_label = new QLabel(this); m_label->setFont(KGlobalSettings::smallestReadableFont()); + m_label->setWordWrap(true); + m_label->setAlignment(Qt::AlignTop); connect(m_label, SIGNAL(linkActivated(const QString&)), this, SLOT(slotLinkActivated(const QString&))); QVBoxLayout* layout = new QVBoxLayout(this); + layout->setMargin(0); layout->addWidget(m_label); setText(m_comment); |
