mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
overviewControls: Move reactive flag to main actor
The main overview actor was made reactive to catch scroll-events and propagate them; after some code shuffling, the actor that catches scroll events ended up not being the same actor that's supposed to propagate this, which broke using the scroll wheel to switch workspaces. https://bugzilla.gnome.org/show_bug.cgi?id=700595
This commit is contained in:
parent
8727661c1c
commit
d658ec8de2
1 changed files with 1 additions and 1 deletions
|
|
@ -506,10 +506,10 @@ const ControlsManager = new Lang.Class({
|
|||
this.indicatorActor = this._indicator.actor;
|
||||
|
||||
this.actor = new St.Widget({ layout_manager: new Clutter.BinLayout(),
|
||||
reactive: true,
|
||||
x_expand: true, y_expand: true,
|
||||
clip_to_allocation: true });
|
||||
this._group = new St.BoxLayout({ name: 'overview-group',
|
||||
reactive: true,
|
||||
x_expand: true, y_expand: true });
|
||||
this.actor.add_actor(this._group);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue