aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-02-12 11:09:26 -0500
committerKen Moore <ken@pcbsd.org>2015-02-12 11:09:26 -0500
commite48ebe39d11153cedf9301fd6c2733a94403597f (patch)
treeff8c16e67f06c00b9f49d0be632dcc1946264be3 /lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
parentUpdate the Lumina port makefile for FreeBSD to add a multimedia option (enabl... (diff)
downloadlumina-e48ebe39d11153cedf9301fd6c2733a94403597f.tar.gz
lumina-e48ebe39d11153cedf9301fd6c2733a94403597f.tar.bz2
lumina-e48ebe39d11153cedf9301fd6c2733a94403597f.zip
Clean up some plugin interactions (including an OpenBSD crash with desktop plugin interactions).
Diffstat (limited to 'lumina-desktop/panel-plugins/userbutton/LUserButton.cpp')
-rw-r--r--lumina-desktop/panel-plugins/userbutton/LUserButton.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp b/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
index c33f9023..2ee2b494 100644
--- a/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
+++ b/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
@@ -24,6 +24,7 @@ LUserButtonPlugin::LUserButtonPlugin(QWidget *parent, QString id, bool horizonta
menu->addAction(mact);
button->setMenu(menu);
+ connect(menu, SIGNAL(aboutToHide()), this, SLOT(updateButtonVisuals()) );
QTimer::singleShot(0,this, SLOT(OrientationChange())); //Update icons/sizes
}
bgstack15