# HG changeset patch # User Claus Gittinger # Date 1487269246 -3600 # Node ID 207171d9b430aaa5d136a4064e88c4dd10a23eda # Parent 809f41b5b48cd01063ca241b5ea68164feb3bb20 class: SimpleView changed: #inspectorExtraAttributes diff -r 809f41b5b48c -r 207171d9b430 extensions.st --- a/extensions.st Thu Feb 16 11:12:28 2017 +0100 +++ b/extensions.st Thu Feb 16 19:20:46 2017 +0100 @@ -2188,13 +2188,15 @@ inspectorExtraAttributes ^ super inspectorExtraAttributes - add:'-windowGroup' -> [ self instVarNamed:#windowGroup ]; - add:'-sensor' -> [ self instVarNamed:#sensor ]; - add:'-parent' -> [ self instVarNamed:#container ]; + add:'-windowGroup' -> [ self windowGroup ]; + add:'-sensor' -> [ self sensor ]; + add:'-parent' -> [ self container ]; add:'-hidden' -> [ self isHiddenOnRealize ]; add:'-enabled' -> [ self enabled ]; yourself + + "Modified: / 16-02-2017 / 18:34:31 / cg" ! ! !SimpleView methodsFor:'testing'!