From 884363f962f9c77a009ff12e33424f934a267957 Mon Sep 17 00:00:00 2001 From: Sol Date: Sun, 6 Jan 2013 03:12:32 +0000 Subject: [PATCH] - Allow OS to set location --- src/main/java/forge/view/FView.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/forge/view/FView.java b/src/main/java/forge/view/FView.java index 3864380b421..68147a21fdd 100644 --- a/src/main/java/forge/view/FView.java +++ b/src/main/java/forge/view/FView.java @@ -112,7 +112,9 @@ public enum FView { FView.this.frmSplash.dispose(); FView.this.frmSplash = null; - + + // Allow OS to set location. Hopefully this doesn't cause issues + frmDocument.setLocationByPlatform(true); frmDocument.setVisible(true); }