Skip to content

Commit

Permalink
[4.4.3] set fontengine=directwrite Antialiasing=false, Smooth=false
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Oct 1, 2024
1 parent dda569b commit d700d0a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/framework/uicomponents/view/quickpaintedview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,9 @@ using namespace muse::uicomponents;
QuickPaintedView::QuickPaintedView(QQuickItem* parent)
: QQuickPaintedItem(parent)
{
#ifdef Q_OS_WIN
setAntialiasing(true);
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)
Expand Down

0 comments on commit d700d0a

Please sign in to comment.