diff options
author | Ken Moore <ken@ixsystems.com> | 2019-03-08 07:57:08 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2019-03-08 07:57:08 -0500 |
commit | 42ba329591e628a3a44e61e18e5185b7d72e009f (patch) | |
tree | 2e41ce22a9ae0c7d5c77ff68f2c16eacfc79fed8 | |
parent | Finish cleaning up lumina-pdf with poppler. (diff) | |
download | lumina-42ba329591e628a3a44e61e18e5185b7d72e009f.tar.gz lumina-42ba329591e628a3a44e61e18e5185b7d72e009f.tar.bz2 lumina-42ba329591e628a3a44e61e18e5185b7d72e009f.zip |
Make sure that the start menu is "activated" when opened so that it always has keyboard focus.
-rw-r--r-- | src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp index c2f0bea1..5acd9721 100644 --- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp +++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp @@ -128,6 +128,7 @@ void LStartButtonPlugin::openMenu(){ if(old!=0){ old->deleteLater(); }*/ //-------- //qDebug() << "Menu Size:" << startmenu->size(); + startmenu->activateWindow(); startmenu->UpdateMenu(); button->showMenu(); } |