aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-16 09:35:28 -0500
committerKen Moore <ken@pcbsd.org>2015-01-16 09:35:28 -0500
commit7154d98b211ae452a878f8eb4ee517e79cc5c47b (patch)
treea168962e5f1221b7b175f5ce2dcc23cee83a0646 /lumina-desktop/panel-plugins
parentQuick fix for auto-hidden panels. Ensure that the mouse is actually outside t... (diff)
downloadlumina-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.cpp1
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
}
bgstack15