Skip to content

Commit

Permalink
build a new zip
Browse files Browse the repository at this point in the history
  • Loading branch information
maoschanz committed Dec 28, 2018
1 parent bc05a4a commit d10ff42
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
Binary file modified [email protected]
Binary file not shown.
23 changes: 0 additions & 23 deletions dragAndDrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,29 +147,6 @@ const OverlayManager = new Lang.Class({
}
},

findBorders: function () { // Abject XXX TODO
let y = 0;
let monitor = Main.layoutManager.primaryMonitor;
let widget = null;
let upper = null;
let lower = null;

while (lower == null) {
widget = global.stage.get_actor_at_pos(Clutter.PickMode.ALL, monitor.width-1, y);
if (widget instanceof St.Button || widget instanceof St.ScrollView) {
if (upper == null) {
upper = y;
}
} else {
if (upper != null) {
lower = y-15;
}
}
y += 5;
}
return [lower, upper];
},

updateActorsPositions: function () {
let monitor = Main.layoutManager.primaryMonitor;
this.topOfTheGrid = Main.overview.viewSelector.actor.get_parent().get_parent().get_allocation_box().y1;
Expand Down

0 comments on commit d10ff42

Please sign in to comment.