Fix DND to left side of the screen
Set the size of the Dash actor to 0x0 so that it doesn't interfere with drag and drop. http://bugzilla.gnome.org/show_bug.cgi?id=587899
This commit is contained in:
parent
00407d6971
commit
732573331a
@ -232,7 +232,8 @@ Dash.prototype = {
|
||||
let resultsHeight = global.screen_height - Panel.PANEL_HEIGHT - DASH_SECTION_PADDING - bottomHeight;
|
||||
let detailsHeight = global.screen_height - Panel.PANEL_HEIGHT - DASH_SECTION_PADDING - bottomHeight;
|
||||
|
||||
this.actor = new Clutter.Group({});
|
||||
// Size the actor to 0x0 so as not to interfere with DND
|
||||
this.actor = new Clutter.Group({ width: 0, height: 0 });
|
||||
this.actor.height = global.screen_height;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user