mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
- Fixed percentages disapearing with default version of cleanlooks style
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- BUGFIX: Suppressed QLayout: Attempting to add QLayout "" to properties "properties" warning message when opening a properties dialog
|
- 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 a little bug in search engine plugins helper file
|
||||||
- BUGFIX: Fixed compilation problems with Qt 4.3
|
- BUGFIX: Fixed compilation problems with Qt 4.3
|
||||||
|
- BUGFIX: Percentages no longer disapear with default cleanlooks style
|
||||||
|
|
||||||
* Sun Apr 5 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.3
|
* Sun Apr 5 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.3
|
||||||
- BUGFIX: Fixed Web UI torrent upload form
|
- BUGFIX: Fixed Web UI torrent upload form
|
||||||
|
|||||||
@@ -103,8 +103,12 @@ void useStyle(QApplication *app, int style){
|
|||||||
app->setStyle(new QWindowsXPStyle());
|
app->setStyle(new QWindowsXPStyle());
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
/*default:
|
default:
|
||||||
app->setStyle(new QPlastiqueStyle());*/
|
if(app->style()->objectName() == "cleanlooks") {
|
||||||
|
// Force our own cleanlooks style
|
||||||
|
qDebug("Forcing our own cleanlooks style");
|
||||||
|
app->setStyle(new QGnomeLookStyle());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user