diff --git a/Changelog b/Changelog index bcf999aca..5bb067cb1 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,7 @@ - BUGFIX: Suppressed QLayout: Attempting to add QLayout "" to properties "properties" warning message when opening a properties dialog - BUGFIX: Fixed a little bug in search engine plugins helper file - BUGFIX: Fixed compilation problems with Qt 4.3 + - BUGFIX: Percentages no longer disapear with default cleanlooks style * Sun Apr 5 2009 - Christophe Dumez - v1.3.3 - BUGFIX: Fixed Web UI torrent upload form diff --git a/src/main.cpp b/src/main.cpp index 4f538a0b7..60ed4a9f4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -103,8 +103,12 @@ void useStyle(QApplication *app, int style){ app->setStyle(new QWindowsXPStyle()); break; #endif - /*default: - app->setStyle(new QPlastiqueStyle());*/ + default: + if(app->style()->objectName() == "cleanlooks") { + // Force our own cleanlooks style + qDebug("Forcing our own cleanlooks style"); + app->setStyle(new QGnomeLookStyle()); + } } }