Skip to content

Commit

Permalink
adjusted desktop window size
Browse files Browse the repository at this point in the history
  • Loading branch information
dermetfan committed Aug 9, 2014
1 parent 87f28f2 commit 6171075
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions desktop/src/br/lopes/biometrySom/desktop/DesktopLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ public class DesktopLauncher {
public static void main(String[] arg) {
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = "OCR with Kohonen Map";
cfg.width = 410;
cfg.height = 630;

LwjglApplication lwjglApplication = new LwjglApplication(new OcrSom(), cfg);

cfg.width = 405;
cfg.height = 670;
new LwjglApplication(new OcrSom(), cfg);
}

}

0 comments on commit 6171075

Please sign in to comment.