* X11GLNative.cs: Ensure that Width and Height properties return valid values in the OnLoad event.

This commit is contained in:
the_fiddler 2009-03-23 11:57:49 +00:00
parent 60665a76a4
commit 3914aaa1e6

View file

@ -283,6 +283,9 @@ namespace OpenTK.Platform.X11
Debug.WriteLine(String.Format("X11GLNative window created successfully (id: {0}).", Handle));
Debug.Unindent();
this.width = width;
this.height = height;
exists = true;
}