diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-04 22:45:17 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-04 22:45:17 -0700 |
commit | 78fee704501e2d95b4e2c3c19b17305ab952a9af (patch) | |
tree | 685a5084e0aff69d48305a26781d54587e2c8155 /qt-ui/kmessagewidget.cpp | |
parent | eca96ee8b7cb59bad69569dee1cbee9c4cafe6bb (diff) | |
download | subsurface-78fee704501e2d95b4e2c3c19b17305ab952a9af.tar.gz |
Correctly remove the Close button from most message widgets
The only time we want the close button is when showing an error at the
bottom of the main window.
In the other cases (maintab, globe) we need to explicitly hide it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/kmessagewidget.cpp')
-rw-r--r-- | qt-ui/kmessagewidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/kmessagewidget.cpp b/qt-ui/kmessagewidget.cpp index e03d10c75..fc733c02d 100644 --- a/qt-ui/kmessagewidget.cpp +++ b/qt-ui/kmessagewidget.cpp @@ -61,7 +61,7 @@ void KMessageWidgetPrivate::init(KMessageWidget *q_ptr) closeButton = new QToolButton(content); closeButton->setAutoRaise(true); closeButton->setDefaultAction(closeAction); - + closeButton->setVisible(false); q->setMessageType(KMessageWidget::Information); } |