After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 594074 - Overview still interactive during animation
Overview still interactive during animation
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2009-09-03 20:07 UTC by nm
Modified: 2009-09-14 19:34 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
[Overview] Make content area eat mouse events during animations (5.08 KB, patch)
2009-09-13 18:58 UTC, Colin Walters
reviewed Details | Review

Description nm 2009-09-03 20:07:07 UTC
Reproduce:

1. Open Activities
2. Dubble click on any item in the Places dialog (example: Documents)

This will open 2 windows of Documents however the effect should either be dubble click to open a window or single click to open a window. Only 1 window should be opened however.

Signle Click and 1 window open would be the best to follow the rest of the settings in the activities menu.
Comment 1 Colin Walters 2009-09-04 04:03:56 UTC
Maybe have Main.overview.hide just raise the transparent background over everything until the animation is complete.
Comment 2 Colin Walters 2009-09-13 18:25:50 UTC
We have a variety of bugs like this; another one is that the mouseover handler for WindowClone which does raise_top still runs during the leave animation which screws up the stacking order.
Comment 3 Colin Walters 2009-09-13 18:58:16 UTC
Created attachment 143113 [details] [review]
[Overview] Make content area eat mouse events during animations

There are ton of different kinds of mouse even handlers in the overview;
WindowClone has several mouse-enter/leave handlers, we still have a variety
of classes not ported to ButtonBox and so incorrectly handling double-click,
etc.

Since we at present don't have anything in the overview area for which
it makes sense to interact with during the animation, create a transparent
event-eating box which we raise to the top during the animation.
Comment 4 Dan Winship 2009-09-14 13:33:45 UTC
Comment on attachment 143113 [details] [review]
[Overview] Make content area eat mouse events during animations

>+        // Similar to the cover pane but used for dialogs ("panes"); see the comments
>         // in addPane below.
>         this._transparentBackground = new Clutter.Rectangle({ opacity: 0,
>                                                               reactive: true });

Is there any reason we need coverPane and can't just use transparentBackground for both?

>+        this._dash.actor.set_position(0, contentY);
>+        this._dash.actor.set_size(displayGridColumnWidth, screenHeight - contentY);

can change the "screenHeight - contentY" to "contentHeight"
Comment 5 Colin Walters 2009-09-14 16:17:07 UTC
(In reply to comment #4)
> (From update of attachment 143113 [details] [review])
> >+        // Similar to the cover pane but used for dialogs ("panes"); see the comments
> >         // in addPane below.
> >         this._transparentBackground = new Clutter.Rectangle({ opacity: 0,
> >                                                               reactive: true });
> 
> Is there any reason we need coverPane and can't just use transparentBackground
> for both?

I considered that but they feel like two separate things to me; the transparentBackground is more about implementing modal dialog-like behavior.

> >+        this._dash.actor.set_position(0, contentY);
> >+        this._dash.actor.set_size(displayGridColumnWidth, screenHeight - contentY);
> 
> can change the "screenHeight - contentY" to "contentHeight"

Fixed.