summaryrefslogtreecommitdiff
path: root/sources/utils/VSFrame.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/utils/VSFrame.java')
-rw-r--r--sources/utils/VSFrame.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/utils/VSFrame.java b/sources/utils/VSFrame.java
index 9bd70a9..e5ff6a0 100644
--- a/sources/utils/VSFrame.java
+++ b/sources/utils/VSFrame.java
@@ -45,7 +45,7 @@ public class VSFrame extends JFrame {
if (parent == null) {
final Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
x = (int) (screenSize.width - getWidth()) / 2;
- y = (int) (screenSize.height - getHeight()) / 2;
+ y = 50;//(int) (screenSize.height - getHeight()) / 2;
} else {
final Point location = parent.getLocation();