Skip to content

Commit

Permalink
fixed type #73
Browse files Browse the repository at this point in the history
  • Loading branch information
negesti committed Mar 27, 2015
1 parent 39acaa8 commit 5b45b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension.js
Expand Up @@ -769,7 +769,7 @@ MoveWindow.prototype = {
let outer = win.get_dimension();
let inner = win.get_rect();
rect.width = rect.width - (outer.width - inner.width);
rect.height = recht.height - (outer.height - inner.height)
rect.height = rect.height - (outer.height - inner.height)

return rect;
},
Expand Down

0 comments on commit 5b45b4c

Please sign in to comment.