Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed May 20, 2019
1 parent cdb1331 commit 48dd0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wm/src/linoleum/wm/WindowManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ private void configure(final Rectangle bounds) {
final int y = bounds.y - panel.getY() - getContent().getY();
final int width = bounds.width - panel.getWidth() + getWidth();
final int height = bounds.height - panel.getHeight() + getHeight();
if (x != getX() || y != getHeight() || width != getWidth() || height != getHeight()) {
if (x != getX() || y != getY() || width != getWidth() || height != getHeight()) {
setBounds(x, y, width, height);
}
}
Expand Down

0 comments on commit 48dd0e1

Please sign in to comment.