aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-26 18:30:51 -0400
committerKen Moore <ken@ixsystems.com>2017-10-26 18:30:51 -0400
commit9c5f154c2e8cc1ad388732a0bc3ee9bb42f296c6 (patch)
treef36b8c5f944b0e9e6170d59f2423ad1454e89cf6 /src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp
parentStarted incorporating the Grav screensaver to QML (diff)
downloadlumina-9c5f154c2e8cc1ad388732a0bc3ee9bb42f296c6.tar.gz
lumina-9c5f154c2e8cc1ad388732a0bc3ee9bb42f296c6.tar.bz2
lumina-9c5f154c2e8cc1ad388732a0bc3ee9bb42f296c6.zip
Fix a few places where /net/ files are still checked for existance (pauses/delays the session init)
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp2
1 files changed, 1 insertions, 1 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 f44add77..bbcd096c 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.cpp
@@ -28,7 +28,7 @@ LStartButtonPlugin::LStartButtonPlugin(QWidget *parent, QString id, bool horizon
menu->setContents(startmenu);
QSize saved = LSession::handle()->DesktopPluginSettings()->value("panelPlugs/"+this->type()+"/MenuSize", QSize(0,0)).toSize();
if(!saved.isNull()){ startmenu->setFixedSize(saved); } //re-load the previously saved value
-
+
button->setMenu(menu);
connect(menu, SIGNAL(aboutToHide()), this, SLOT(updateButtonVisuals()) );
QTimer::singleShot(0,this, SLOT(OrientationChange())); //Update icons/sizes
bgstack15