diff --git a/Source/GLControl/GLControl.cs b/Source/GLControl/GLControl.cs index bd3e635c..340b82f9 100644 --- a/Source/GLControl/GLControl.cs +++ b/Source/GLControl/GLControl.cs @@ -191,6 +191,9 @@ namespace OpenTK /// A System.EventArgs that contains the event data. protected override void OnResize(EventArgs e) { + if (IsHandleCreated == false) + CreateHandle(); + if (context != null) context.Update(Implementation.WindowInfo);