From: Matthieu Gallien Date: Wed, 28 Aug 2024 09:06:35 +0000 (+0200) Subject: on windows use QWidget native platform style X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~5^2~233^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4d114a4f892d004a61b85eab19c129069b62d47d;p=nextcloud-desktop.git on windows use QWidget native platform style will make all QWidget based user interface look more native Signed-off-by: Matthieu Gallien --- diff --git a/src/gui/main.cpp b/src/gui/main.cpp index e1814b9cc..14b55dab7 100644 --- a/src/gui/main.cpp +++ b/src/gui/main.cpp @@ -74,16 +74,6 @@ int main(int argc, char **argv) OCC::Application app(argc, argv); -#ifdef Q_OS_WIN - // The Windows style still has pixelated elements with Qt 5.6, - // it's recommended to use the Fusion style in this case, even - // though it looks slightly less native. Check here after the - // QApplication was constructed, but before any QWidget is - // constructed. - if (app.devicePixelRatio() > 1) - QApplication::setStyle(QStringLiteral("fusion")); -#endif // Q_OS_WIN - #ifndef Q_OS_WIN signal(SIGPIPE, SIG_IGN); #endif