fix window size

This commit is contained in:
Vadim Lopatin 2015-02-11 13:37:24 +03:00
parent 0fee21f99c
commit 2422cb222e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ extern (C) int UIAppMain(string[] args) {
}
// create window
Window window = Platform.instance.createWindow("Dlang IDE", null);
Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 900, 700);
IDEFrame frame = new IDEFrame(window);