Bug 264276 - Extenders can be brought up twice when quickly clicking them
Summary: Extenders can be brought up twice when quickly clicking them
Status: RESOLVED NOT A BUG
Alias: None
Product: kwin
Classification: Plasma
Component: effects-various (show other bugs)
Version: 5.1.95
Platform: Ubuntu Linux
: NOR minor
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-25 18:35 UTC by Kai Uwe Broulik
Modified: 2018-10-08 11:21 UTC (History)
3 users (show)

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


Attachments
Kick off "shown twice" (144.46 KB, image/png)
2011-01-25 18:35 UTC, Kai Uwe Broulik
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kai Uwe Broulik 2011-01-25 18:35:06 UTC
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
Comment 1 Thomas Lübking 2011-02-01 16:03:55 UTC
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.
Comment 2 Vlad Zahorodnii 2018-06-05 21:10:10 UTC
(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.
Comment 3 Vlad Zahorodnii 2018-08-09 11:06:05 UTC
> 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.
Comment 4 Vlad Zahorodnii 2018-10-08 11:14:27 UTC
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
Comment 5 Vlad Zahorodnii 2018-10-08 11:21:05 UTC
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.