Merge pull request #489 from dayllenger/tetris

Expand window in tetris example
This commit is contained in:
Vadim Lopatin 2017-10-16 11:22:36 +03:00 committed by GitHub
commit 702bbc6c21
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ extern (C) int UIAppMain(string[] args) {
//SCREEN_DPI = 150;
// create window
Window window = Platform.instance.createWindow("DLangUI: Tetris game example"d, null, WindowFlag.Modal, 600, 400);
Window window = Platform.instance.createWindow("DLangUI: Tetris game example"d, null, WindowFlag.Modal | WindowFlag.ExpandSize, 600, 400);
window.mainWidget = new GameWidget();