https://bugs.kde.org/show_bug.cgi?id=381000

--- Comment #147 from Vova Mshanetskiy <vovams...@gmail.com> ---
I have found another workaround for the high CPU usage issue. I have never had
any RAM usage problems, but i suggest those, who suffer from high RAM usage
issue, to try it too.

You have to edit
/usr/share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml according
to the following patch:

--- main.qml 2017-10-24 14:34:25.000000000 +0300
+++ main-na.qml 2017-11-06 13:16:12.944001093 +0200
@@ -173,16 +173,18 @@
         running: false

         ParallelAnimation {
-            OpacityAnimator {
+            NumberAnimation {
                 target: currentImage
+                property: "opacity"
                 from: 0
                 to: 1
                 duration: fadeOtherAnimator.duration
             }
-            OpacityAnimator {
+            NumberAnimation {
                 id: fadeOtherAnimator
                 property bool enabled: true
                 target: otherImage
+                property: "opacity"
                 from: 1
                 // cannot disable an animation individually, so we just fade
from 1 to 1
                 to: enabled ? 0 : 1

This replaces OpacityAnimators used to animate slide changes with equivalent
NumberAnimations (NumberAnimations are less efficient/performant though). The
same action fixes my bug.qml from comment 142, by the way.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to