Fix dash sliding animation with multiple monitors
We used to clip the overview group to prevent the dash from sliding into neighbor monitors, but now it moved to the groupStack, so we must move the clip too. https://bugzilla.gnome.org/show_bug.cgi?id=694970
This commit is contained in:
parent
c249ff9046
commit
f146b01e3e
@ -130,11 +130,11 @@ const Overview = new Lang.Class({
|
||||
this._overview._delegate = this;
|
||||
|
||||
this._groupStack = new St.Widget({ layout_manager: new Clutter.BinLayout(),
|
||||
x_expand: true, y_expand: 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,
|
||||
clip_to_allocation: true });
|
||||
x_expand: true, y_expand: true });
|
||||
this._groupStack.add_actor(this._group);
|
||||
|
||||
this._backgroundGroup = new Meta.BackgroundGroup();
|
||||
|
Loading…
Reference in New Issue
Block a user