`Qt::AA_UseHighDpiPixmaps` is enabled by default in Qt6

wilder-5.26
Fushan Wen 4 years ago
parent 83bcdab0aa
commit f24b7554b8
No known key found for this signature in database
GPG Key ID: 2E48D1487C91DCAA
  1. 2
      kcms/colors/editor/kcolorschemeeditor.cpp

@ -16,7 +16,9 @@
int main(int argc, char *argv[])
{
// Fixes blurry icons with fractional scaling
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
QApplication app(argc, argv);
KAboutData aboutData(QStringLiteral("kcolorschemeeditor"),

Loading…
Cancel
Save