SpringAnimation ignores duration property and will keep animating until
the item has stopped springing; this takes a long time >= 1s just with
the movements getting smaller.
This means the analog clock is constantly repainting the entire desktop
causing high load.
This now restricts it to 200ms, so it's 5x less load.
REVIEW: 119357
BUG: 335442
Quoting the KIconThemes change that lead to this change:
Revert "Revert "Allow passing custom theme base path together with custom app themes""
This reverts commit 6a75883159bbeb9a9316436d428d2617c3b5fc96.
This was never intended to be pushed, it was a local test for the testcase
in RR119058. Sorry for the mixup.
We're back to good now.
CCMAIL:mklapetek@kde.org
CCMAIL:plasma-devel@kde.org
This is needed to build against KIconThemes 6a75883159bbeb9, which
reverts the commit that adds the path to the addAppDir call. From
looking at the API docs, this *seems* to be the right fix, but I don't
know how to test this properly, so I can't confirm that this actually
works. It builds though, and that's at least a step forward.
If someone can test this, that would be very useful.
CCMAIL:mklapetek@kde.org
CCMAIL:plasma-devel@kde.org
Reviewed-by: Eike Hein on IRC
when clicking on the plasmoid icon to open or close the popup, save the current open state.
is possible that between mouse down and mouse up the popup has been closed
so don't reopen the popup in this case
CCBUG:336754
This prevents some apps to spam lots of notifications when all it needs
is actually just one single notification.
Imagine you're switching songs in your playlist quickly and each song
change sends new notification, but when you get to the tenth song, you
still see the notification from the 3rd song (because timeouts) and you
don't really care about all those songs changes still in the queue as
you see it in the playlist anyway.
So this patch limits certain apps to have only one single notification
which is always updated. So far Clementine and Spotify is there.
Switching songs or changing playback status creates only one single
popup.
Additionally, the list gets added entries from a config file too.
REVIEW: 118796
This caused a problems when we recevied a notification with an image,
then recieved one without. The second notification would still show the
previous image.
QPixmapItem now has a reset property and will handle this gracefully
without warnings.