fix deprecated name

This commit is contained in:
Adam D. Ruppe 2017-03-15 20:53:48 -04:00
parent a76dd66945
commit ea04031453
1 changed files with 1 additions and 1 deletions

View File

@ -864,7 +864,7 @@ class Window : Widget {
this(int width = 500, int height = 500, string title = null) { this(int width = 500, int height = 500, string title = null) {
super(null); super(null);
win = new SimpleWindow(width, height, title, OpenGlOptions.no, Resizablity.allowResizing); win = new SimpleWindow(width, height, title, OpenGlOptions.no, Resizability.allowResizing);
this.width = win.width; this.width = win.width;
this.height = win.height; this.height = win.height;
this.parentWindow = this; this.parentWindow = this;