aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/LDPlugin.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-05-23 08:23:15 -0400
committerKen Moore <ken@pcbsd.org>2015-05-23 08:23:15 -0400
commit5f502c9034fa2375a58b3b3a8e207224ebeaa73a (patch)
tree83b6fe74715e6d4d6db4847d6ad2ee1f018173e1 /lumina-desktop/desktop-plugins/LDPlugin.h
parentAdd a new "phase" into the boot splash - system applications loading. (diff)
downloadlumina-5f502c9034fa2375a58b3b3a8e207224ebeaa73a.tar.gz
lumina-5f502c9034fa2375a58b3b3a8e207224ebeaa73a.tar.bz2
lumina-5f502c9034fa2375a58b3b3a8e207224ebeaa73a.zip
Remove the extra bootsplash show between the apps/settings menu initialization. Something about the addition processEvents() call is screwing up the init procedures.
Diffstat (limited to 'lumina-desktop/desktop-plugins/LDPlugin.h')
-rw-r--r--lumina-desktop/desktop-plugins/LDPlugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/LDPlugin.h b/lumina-desktop/desktop-plugins/LDPlugin.h
index 82f8e22f..fc6ab604 100644
--- a/lumina-desktop/desktop-plugins/LDPlugin.h
+++ b/lumina-desktop/desktop-plugins/LDPlugin.h
@@ -40,7 +40,7 @@ public:
if(opaque){ this->setObjectName("LuminaDesktopPluginVisible"); }
else{ this->setObjectName("LuminaDesktopPlugin"); }
//Use plugin-specific values for stylesheet control (applauncher, desktopview, etc...)
- qDebug() << "set Objectname:" << id.section("---",0,0).section("::",0,0);
+ //qDebug() << "set Objectname:" << id.section("---",0,0).section("::",0,0);
this->setObjectName(id.section("---",0,0).section("::",0,0));
}
bgstack15