| Summary: | mediaframe: smoothing/anti-aliasing of images | ||
|---|---|---|---|
| Product: | [Unmaintained] kdeplasma-addons | Reporter: | graham |
| Component: | Media Frame | Assignee: | Plasma Bugs List <plasma-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | aspotashev, nate |
| Priority: | NOR | ||
| Version First Reported In: | 5.10.4 | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
This was implemented at some point last year. |
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)