diff --git a/modules/gui/qt/widgets/qml/RoundImage.qml b/modules/gui/qt/widgets/qml/RoundImage.qml index f3ab8812671d7018d6947f33ab8711d7f6eaa13c..838a3fe6178ec9d7071f5f5e03aed9559231f68d 100644 --- a/modules/gui/qt/widgets/qml/RoundImage.qml +++ b/modules/gui/qt/widgets/qml/RoundImage.qml @@ -26,12 +26,14 @@ Item { implicitWidth: image.implicitWidth implicitHeight: image.implicitHeight - // Override QQuickItem's antialiasing as readonly. + // WARNING: We can not override QQuickItem's antialiasing + // property as readonly because Qt 6.6 marks it + // as `FINAL`... // FIXME: The shader can be generated without // the define that enables antialiasing. // It should be done when the build system // starts supporting shader defines. - readonly property bool antialiasing: true + antialiasing: true asynchronous: true