- Reverted an accidental width/height change in FDeckViewer.

This commit is contained in:
Agetian
2017-05-17 08:26:29 +00:00
parent dde9f064ab
commit b3ae65acb4

View File

@@ -118,8 +118,8 @@ public class FDeckViewer extends FDialog {
}
});
final int width = 1920;
final int height = 1080;
final int width = 800;
final int height = 600;
this.setPreferredSize(new Dimension(width, height));
this.setSize(width, height);