diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-16 11:09:26 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-16 11:09:26 -0400 |
commit | 470d9b82a7269cfec9e6b9d79074deff7bb62dc9 (patch) | |
tree | 643dbc7c6f17e8168cbc271af43afd605f3a3434 /lumina-desktop/panel-plugins/systemstart/LStartButton.cpp | |
parent | Ensure that the screen brightness slider in the system dashboard only goes do... (diff) | |
download | lumina-470d9b82a7269cfec9e6b9d79074deff7bb62dc9.tar.gz lumina-470d9b82a7269cfec9e6b9d79074deff7bb62dc9.tar.bz2 lumina-470d9b82a7269cfec9e6b9d79074deff7bb62dc9.zip |
Fix up all the window activation detection/management within the lumina session. Now when a submenu on the panel is closed somehow or a window was modified with the task manager, it will properly find/activate the right window again.
Diffstat (limited to 'lumina-desktop/panel-plugins/systemstart/LStartButton.cpp')
-rw-r--r-- | lumina-desktop/panel-plugins/systemstart/LStartButton.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp b/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp index cb43b7c3..673c04ec 100644 --- a/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp +++ b/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp @@ -17,6 +17,7 @@ LStartButtonPlugin::LStartButtonPlugin(QWidget *parent, QString id, bool horizon this->layout()->addWidget(button); menu = new QMenu(this); menu->setContentsMargins(1,1,1,1); + connect(menu, SIGNAL(aboutToHide()), this, SIGNAL(MenuClosed())); startmenu = new StartMenu(this); connect(startmenu, SIGNAL(CloseMenu()), this, SLOT(closeMenu()) ); mact = new QWidgetAction(this); |