diff options
author | Ken Moore <ken@pcbsd.org> | 2015-04-15 13:43:09 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-04-15 13:43:09 -0400 |
commit | 9b6800e8acc5dc802f8bd5e31b1892914b568f6e (patch) | |
tree | 9d27d1f66cdf5ab67279803ce249ad15ae8d52cf /lumina-desktop/main.cpp | |
parent | Don't add the "LUMINA" tag to the name of Lumina-specific applications. (diff) | |
download | lumina-9b6800e8acc5dc802f8bd5e31b1892914b568f6e.tar.gz lumina-9b6800e8acc5dc802f8bd5e31b1892914b568f6e.tar.bz2 lumina-9b6800e8acc5dc802f8bd5e31b1892914b568f6e.zip |
Clean up a *lot* of the general XCB warnings that sometimes occur, and also tinker with the session cleanup routine quite a bit to streamline the order in which things are closed down (particularly with system tray apps).
Diffstat (limited to 'lumina-desktop/main.cpp')
-rw-r--r-- | lumina-desktop/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp index 357fd14c..adf96181 100644 --- a/lumina-desktop/main.cpp +++ b/lumina-desktop/main.cpp @@ -90,7 +90,7 @@ int main(int argc, char ** argv) LUtils::LoadTranslation(&a, "lumina-desktop"); //a.LoadLocale(QLocale().name()); //Start launching external applications - QTimer::singleShot(2000, &a, SLOT(launchStartupApps()) ); //wait a couple seconds first + QTimer::singleShot(3000, &a, SLOT(launchStartupApps()) ); //wait a couple seconds first if(DEBUG){ qDebug() << "Exec Time:" << timer->elapsed(); delete timer;} int retCode = a.exec(); //qDebug() << "Stopping the window manager"; |