https://bugs.kde.org/show_bug.cgi?id=398056
--- Comment #16 from Friedrich W. H. Kossebau <kosse...@kde.org> --- (In reply to Friedrich W. H. Kossebau from comment #15) > (In reply to Christoph Feck from comment #13) > > What exactly is the difference between Qt::AA_UseHighDpiPixmaps and > > Qt::AA_EnableHighDpiScaling, and should both be enabled for proper HiDPI > > support? Most applications I see only set the former property. > > Good question. > Not exactly sure, but I would bet both should be set for really good looking > UI currently for our legacy-based applications like KDevelop Qt code examples seem to do that as well, e.g. http://doc.qt.io/qt-5/qtwidgets-mainwindows-mainwindow-main-cpp.html int main(int argc, char **argv) { QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); QApplication app(argc, argv); [...] -- You are receiving this mail because: You are watching all bug changes.