* GLControl.cs: Removed call to CreateControl from the GLControl constructor. The GLControl is now constructed lazily, as regular UserControls do. Fixes issue [#1071]: "Not firing Load event for GLControl."

This commit is contained in:
the_fiddler 2009-09-02 12:06:41 +00:00
parent 7be5bc9648
commit ad714d3f4c

View file

@ -88,8 +88,6 @@ namespace OpenTK
this.major = major;
this.minor = minor;
this.flags = flags;
this.CreateControl();
}
#endregion