From a74bf353f08f45f8f5fb91573d67ad463a25ad4d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 26 Jan 2017 15:09:22 -0500 Subject: Another large batch of work on the new unified desktop. 1) Get the RootWindow up and functional. 2) Get the lumina-desktop-unified binary functional for starting to test the various pieces (not ready yet for general use) 3) Get the start-lumina-desktop binary setup to launch the new unified binary for testing if the "--unified" flag is used. --- src-qt5/core/lumina-desktop-unified/BootSplash.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src-qt5/core/lumina-desktop-unified/BootSplash.cpp') diff --git a/src-qt5/core/lumina-desktop-unified/BootSplash.cpp b/src-qt5/core/lumina-desktop-unified/BootSplash.cpp index 1a648973..beb4094b 100644 --- a/src-qt5/core/lumina-desktop-unified/BootSplash.cpp +++ b/src-qt5/core/lumina-desktop-unified/BootSplash.cpp @@ -9,6 +9,7 @@ BootSplash::BootSplash() : QWidget(0, Qt::SplashScreen | Qt::X11BypassWindowMana ui->setupUi(this); this->setObjectName("LuminaBootSplash"); //for theme styling //Center the window on the primary screen + this->show(); QPoint ctr = QApplication::desktop()->screenGeometry().center(); this->move( ctr.x()-(this->width()/2), ctr.y()-(this->height()/2) ); generateTipOfTheDay(); -- cgit