Was surprised to find that the MediaFrame widget does not smooth/anti-alias image edges when the plasmoid is rotated. Taking a quick stab at it, I was able to get the image edges to smooth using the following one-line diff. Doesn't do anything to smooth the edges of the plasmoid itself, nor the buttons, but the image edges are smoothed. --- main.qml.bk 2017-07-18 04:06:09.000000000 -0700 +++ main.qml 2017-08-25 10:49:19.245388884 -0700 @@ -204,6 +204,8 @@ asynchronous: true autoTransform: true + antialiasing: true + MouseArea { anchors.fill: parent onClicked: Qt.openUrlExternally(activeSource)
This was implemented at some point last year.