Hi guys I have this problem
int main(int argc, char *argv[])
{
application w;
QPixmap pixmap
(":/img/splash.jpg");
splash->showFullScreen();
QTimer::singleShot(2500, splash,
SLOT(close
()));
QTimer::singleShot(2500,
&w,
SLOT(showFullScreen
()));
return a.exec();
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
application w;
QPixmap pixmap(":/img/splash.jpg");
QSplashScreen *splash = new QSplashScreen(pixmap);
splash->showFullScreen();
QTimer::singleShot(2500, splash, SLOT(close()));
QTimer::singleShot(2500, &w, SLOT(showFullScreen()));
return a.exec();
}
To copy to clipboard, switch view to plain text mode
The splashscreen is not being displayed at full screen, there is the bottom bar which is in front of it...
what am I doing wrong?
Bookmarks