diff options
-rw-r--r-- | lumina-desktop/AppMenu.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lumina-desktop/AppMenu.cpp b/lumina-desktop/AppMenu.cpp index 8736b61e..6c24d632 100644 --- a/lumina-desktop/AppMenu.cpp +++ b/lumina-desktop/AppMenu.cpp @@ -14,7 +14,8 @@ AppMenu::AppMenu(QWidget* parent) : QMenu(parent){ APPS.clear(); watcher = new QFileSystemWatcher(this); connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(watcherUpdate()) ); - QTimer::singleShot(200, this, SLOT(start()) ); //Now start filling the menu + //QTimer::singleShot(200, this, SLOT(start()) ); //Now start filling the menu + start(); //do the initial run during session init so things are responsive immediately. } AppMenu::~AppMenu(){ |