https://bugs.kde.org/show_bug.cgi?id=384014
Bug ID: 384014
Summary: mediaframe: smoothing/anti-aliasing of images
Product: kdeplasma-addons
Version: 5.10.4
Platform: Fedora RPMs
OS: Linux
Status: UNCONFIRMED
Severity: wishlist
Priority: NOR
Component: General
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
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)
--
You are receiving this mail because:
You are watching all bug changes.