# HG changeset patch # User koda # Date 1356624538 -3600 # Node ID 2154732c65f1254436cbadb5cf7c666ed596a49f # Parent bf237f7f1d94f43957cc650ee68c5694900d6583 disable splash on linux diff -r bf237f7f1d94 -r 2154732c65f1 QTfrontend/main.cpp --- a/QTfrontend/main.cpp Thu Dec 27 17:01:02 2012 +0100 +++ b/QTfrontend/main.cpp Thu Dec 27 17:08:58 2012 +0100 @@ -139,7 +139,8 @@ HWApplication app(argc, argv); QLabel *splash = NULL; -#ifdef Q_WS_WIN | Q_WS_X11 | Q_WS_MAC //enabled on all platforms, disable if it doesn't look good + //enabled on win and osx, disable if it doesn't look good +#if defined Q_WS_WIN || defined Q_WS_MAC QPixmap pixmap(":res/splash.png"); splash = new QLabel(0, Qt::FramelessWindowHint|Qt::WindowStaysOnTopHint); splash->setAttribute(Qt::WA_TranslucentBackground);