diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-16 09:35:28 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-16 09:35:28 -0500 |
commit | 7154d98b211ae452a878f8eb4ee517e79cc5c47b (patch) | |
tree | a168962e5f1221b7b175f5ce2dcc23cee83a0646 /lumina-desktop/panel-plugins | |
parent | Quick fix for auto-hidden panels. Ensure that the mouse is actually outside t... (diff) | |
download | lumina-7154d98b211ae452a878f8eb4ee517e79cc5c47b.tar.gz lumina-7154d98b211ae452a878f8eb4ee517e79cc5c47b.tar.bz2 lumina-7154d98b211ae452a878f8eb4ee517e79cc5c47b.zip |
Have the user button automatically perform the long application listings in the background, as soon as apps are changedon the system (not when the user clicked the button any more)
Diffstat (limited to 'lumina-desktop/panel-plugins')
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/UserWidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp index 569d9f7e..5f50e707 100644 --- a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp +++ b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp @@ -82,6 +82,7 @@ UserWidget::UserWidget(QWidget* parent) : QTabWidget(parent), ui(new Ui::UserWid ui->tool_qtconfig->setVisible(false); } lastUpdate = QDateTime(); //make sure it refreshes + connect(LSession::handle()->applicationMenu(), SIGNAL(AppMenuUpdated()), this, SLOT(UpdateMenu()) ); QTimer::singleShot(10,this, SLOT(UpdateMenu())); //make sure to load this once after initialization } |