diff options
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/kmessagewidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/kmessagewidget.cpp b/qt-ui/kmessagewidget.cpp index e03d10c75..9a7b734a2 100644 --- a/qt-ui/kmessagewidget.cpp +++ b/qt-ui/kmessagewidget.cpp @@ -101,7 +101,7 @@ void KMessageWidgetPrivate::createLayout() button->show(); buttonLayout->addButton(button, QDialogButtonBox::QDialogButtonBox::AcceptRole); } - buttonLayout->addButton(closeButton, QDialogButtonBox::RejectRole); + //buttonLayout->addButton(closeButton, QDialogButtonBox::RejectRole); layout->addWidget(buttonLayout, 1, 0, 1, 2, Qt::AlignHCenter | Qt::AlignTop); } else { bool closeButtonVisible = closeButton->isVisible(); @@ -114,9 +114,9 @@ void KMessageWidgetPrivate::createLayout() buttonLayout->addButton(button, QDialogButtonBox::QDialogButtonBox::AcceptRole); } - buttonLayout->addButton(closeButton, QDialogButtonBox::RejectRole); + //buttonLayout->addButton(closeButton, QDialogButtonBox::RejectRole); // Something gets changed when added to the buttonLayout - closeButton->setVisible(closeButtonVisible); + //closeButton->setVisible(closeButtonVisible); layout->addWidget(buttonLayout); }; |