Skip to content

Commit

Permalink
Merge pull request InfiniteAmmoInc#71 from julsam/fix-marquee
Browse files Browse the repository at this point in the history
Fix marquee (selection box)
  • Loading branch information
Addie Lombardo authored Jul 10, 2018
2 parents 449366a + 3c171d5 commit 3b6c256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/js/classes/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ var App = function(name, version) {
MarqRect.x1 = offset.x;
MarqRect.y1 = e.pageY;
MarqRect.x2 = e.pageX;
MarqRect.y2 = e.pageY;
MarqRect.y2 = offset.y;
} else if (e.pageX > offset.x && e.pageY > offset.y) {
MarqRect.x1 = offset.x;
MarqRect.y1 = offset.y;
Expand Down

0 comments on commit 3b6c256

Please sign in to comment.