diff --git a/root.go b/root.go index 22acb2f..47f6d58 100644 --- a/root.go +++ b/root.go @@ -14,7 +14,7 @@ type Root struct { func NewRoot (layout tomo.Layout, children ...tomo.Object) *Container { this := &Container { } this.init(layout, children...) - this.box.SetRole(tomo.R("objects", "Container")) + this.box.SetRole(tomo.R("objects", "Root")) this.box.SetTag("outer", true) return this }