mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- Use system's default style as a default instead of Plastique style
This commit is contained in:
parent
20b6579392
commit
937d45d850
54 changed files with 3198 additions and 3071 deletions
16
src/main.cpp
16
src/main.cpp
|
@ -46,30 +46,28 @@
|
|||
|
||||
void useStyle(QApplication *app, int style){
|
||||
switch(style) {
|
||||
case 0:
|
||||
case 1:
|
||||
app->setStyle(new QPlastiqueStyle());
|
||||
break;
|
||||
case 1:
|
||||
case 2:
|
||||
app->setStyle(new QCleanlooksStyle());
|
||||
break;
|
||||
case 2:
|
||||
case 3:
|
||||
app->setStyle(new QMotifStyle());
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
app->setStyle(new QCDEStyle());
|
||||
break;
|
||||
#ifdef Q_WS_MAC
|
||||
case 4:
|
||||
case 5:
|
||||
app->setStyle(new QMacStyle());
|
||||
break;
|
||||
#endif
|
||||
#ifdef Q_WS_WIN
|
||||
case 4:
|
||||
case 6:
|
||||
app->setStyle(new QWindowsXPStyle());
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
app->setStyle(new QPlastiqueStyle());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -123,7 +121,7 @@ int main(int argc, char *argv[]){
|
|||
}
|
||||
QApplication app(argc, argv);
|
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||
useStyle(&app, settings.value("Preferences/General/Style", 4).toInt());
|
||||
useStyle(&app, settings.value("Preferences/General/Style", 0).toInt());
|
||||
QSplashScreen *splash = new QSplashScreen(QPixmap(QString::fromUtf8(":/Icons/splash.png")));
|
||||
splash->show();
|
||||
// Open options file to read locale
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue