Bug 384014 - mediaframe: smoothing/anti-aliasing of images
Summary: mediaframe: smoothing/anti-aliasing of images
Status: RESOLVED FIXED
Alias: None
Product: kdeplasma-addons
Classification: Plasma
Component: Media Frame (show other bugs)
Version: 5.10.4
Platform: Fedora RPMs Linux
: NOR wishlist
Target Milestone: ---
Assignee: Plasma Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-08-25 17:53 UTC by graham
Modified: 2020-01-02 15:26 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description graham 2017-08-25 17:53:39 UTC
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)
Comment 1 Nate Graham 2020-01-02 15:26:16 UTC
This was implemented at some point last year.