Created attachment 56423 [details] Kick off "shown twice" Version: unspecified (using KDE 4.5.95) OS: Linux (Maybe re-assign to kwin eyecandy since the effect is provided by Kwin(?)) I have set my effects speed to slow. When clicking on a widget that triggers an extender (Kickoff button, network manager plasmoid, etc) and you click it, an extender slides out. Clicking again makes the extender jump to full extended state (which also doesn‘t look nice), then you click the button again and while the other extender is still sliding back into the panel, another one appears below it. See attachment. Note: I said slow, not extremely slow :P So it is definitly reproducible on normal configurations. Reproducible: Always
Looking at the effect, it needs some overhaul (two different animation lists, QHash::operator[] abuse) but if (as i assume) plasma doesn't keep and unmap the notification window but actually closes and reopens it, this will likely not fix (easily). The client would require a unique tag (maybe alongside the present property data?) so the direction can be toggled based on this.
(In reply to Thomas Lübking from comment #1) > Looking at the effect, it needs some overhaul (two different animation > lists, QHash::operator[] abuse) but if (as i assume) plasma doesn't keep and > unmap the notification window but actually closes and reopens it, this will > likely not fix (easily). On X11, that's indeed the case: windowAdded(KWin::EffectWindowImpl(0x562922dd79f0)) windowClosed(KWin::EffectWindowImpl(0x562922dd79f0)) windowAdded(KWin::EffectWindowImpl(0x562922c87210)) windowClosed(KWin::EffectWindowImpl(0x562922c87210)) windowAdded(KWin::EffectWindowImpl(0x562922e2d550)) windowClosed(KWin::EffectWindowImpl(0x562922e2d550)) windowAdded(KWin::EffectWindowImpl(0x562922e31050)) windowClosed(KWin::EffectWindowImpl(0x562922e31050)) windowAdded(KWin::EffectWindowImpl(0x562922259a30)) windowClosed(KWin::EffectWindowImpl(0x562922259a30)) windowAdded(KWin::EffectWindowImpl(0x562922e2a130)) windowClosed(KWin::EffectWindowImpl(0x562922e2a130)) It would be great to know whether that's the case for Wayland. > The client would require a unique tag (maybe alongside the present property > data?) so the direction can be toggled based on this.
> It would be great to know whether that's the case for Wayland. Looks like taks switcher window is being closed and opened. > The client would require a unique tag (maybe alongside the present property data?) so the direction can be toggled based on this. The problem with this approach is that content can "jump". But, maybe, that's not that serious.
Git commit 66a91f086196f83f79dea35004aafba529b3cad9 by Vlad Zagorodniy. Committed on 08/10/2018 at 11:14. Pushed by vladz into branch 'master'. [effects/slidingpopups] Fix jumpy transition between In and Out animations Summary: If a window is being slided in and for some reason it gets closed, the window will be slided out. The problem is that there is a jump between the slide in animation and the slide out animation. The reason for that is we cancel the slide in animation when the slide out animation is started. It makes sense to cancel previously active animations because they have different durations. But visually, it doesn't look good. TimeLine tries to preserve progress value when changing duration. Thus, let's utilize that to fix the jump. This change matters only with animation speed factor > 1.0. Test Plan: Manually. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: abetts, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D15626 M +14 -2 effects/slidingpopups/slidingpopups.cpp https://commits.kde.org/kwin/66a91f086196f83f79dea35004aafba529b3cad9
W.r.t. to this bug, KWin does the best what it can. plasmashell has to re-use windows. By introducing, tokens we'll overcomplicate the effect. Also, fwiw, with the normal animation speed, it's really hard to notice two Kickoff windows. Marking as NOT A BUG because the Sliding Popups effect works as expected.