1 Commits

Author SHA1 Message Date
52a0136e60 Fixed Window.NewChild returning the parent (oops) 2024-06-07 01:47:24 -04:00

View File

@@ -262,7 +262,7 @@ func (this *window) NewChild (bounds image.Rectangle) (tomo.Window, error) {
leader.xWindow.Id)
child.setType("UTILITY")
// child.inheritProperties(leader.window)
return this, err
return child, err
}
func (this *window) Widget () (tomo.Window, error) {