diff --git a/src/app/configs/qt_win.conf b/src/app/configs/qt_win.conf index 99c707827928b..36400fe1e23a3 100644 --- a/src/app/configs/qt_win.conf +++ b/src/app/configs/qt_win.conf @@ -2,4 +2,5 @@ Prefix=./ [Platforms] -WindowsArguments = fontengine=freetype +#WindowsArguments = fontengine=freetype +WindowsArguments = fontengine=directwrite diff --git a/src/framework/uicomponents/view/quickpaintedview.cpp b/src/framework/uicomponents/view/quickpaintedview.cpp index c079bb7d9c5b7..525108fea19c8 100644 --- a/src/framework/uicomponents/view/quickpaintedview.cpp +++ b/src/framework/uicomponents/view/quickpaintedview.cpp @@ -26,9 +26,14 @@ using namespace muse::uicomponents; QuickPaintedView::QuickPaintedView(QQuickItem* parent) : QQuickPaintedItem(parent) { +#ifdef Q_OS_WIN + setAntialiasing(false); + setSmooth(true); +#else //! NOTE It is necessary that when UI scaling is displayed without a blur setAntialiasing(false); setSmooth(false); +#endif } QSGNode* QuickPaintedView::updatePaintNode(QSGNode* old, UpdatePaintNodeData* data)