aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-12 09:19:29 -0500
committerKen Moore <ken@ixsystems.com>2016-11-12 09:19:29 -0500
commit3464e681e6eebe8022b75750405770e8dfe7db87 (patch)
tree6ceecbdc01ae28ec93d1faf0c941882136602515 /src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
parentFix up the panel autohide routine so it actually resizes the panels instead o... (diff)
downloadlumina-3464e681e6eebe8022b75750405770e8dfe7db87.tar.gz
lumina-3464e681e6eebe8022b75750405770e8dfe7db87.tar.bz2
lumina-3464e681e6eebe8022b75750405770e8dfe7db87.zip
Speed up the initial loading of the desktop at start, and delay the auto-started apps by 1/2 second.
Diffstat (limited to 'src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
index fe26941e..6d321305 100644
--- a/src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
+++ b/src-qt5/core/lumina-desktop/desktop-plugins/notepad/NotepadPlugin.cpp
@@ -66,7 +66,7 @@ NotePadPlugin::NotePadPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID)
//qDebug() << "Saving a new setting";
this->saveSetting("customFile",""); //always clear this when the plugin is initialized (only maintained per-session)
//qDebug() << "Loading Notes Dir";
- QTimer::singleShot(2000, this, SLOT(notesDirChanged()));
+ QTimer::singleShot(10, this, SLOT(notesDirChanged()));
//qDebug() << "Set Sizing";
//qDebug() << "Connect Signals/slots";
bgstack15