diff options
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); |
