diff -r 39a9f3340e58 -r e0f85c2db0f9 UIObjectView.st --- a/UIObjectView.st Mon Mar 12 17:15:00 2018 +0100 +++ b/UIObjectView.st Wed Mar 14 20:28:38 2018 +0100 @@ -247,7 +247,7 @@ !UIObjectView class methodsFor:'queries'! isHorizontalResizable:aComponent - "returns true if aComponent is horizontal resizeable + "returns true if aComponent is horizontally resizable " (aComponent isKindOf:ScrollBar) ifTrue:[ ^ aComponent orientation == #horizontal @@ -262,10 +262,12 @@ ^ false ]. ^ true + + "Modified (comment): / 14-03-2018 / 20:23:39 / mawalch" ! isVerticalResizable:aComponent - "returns true if aComponent is vertical resizeable + "returns true if aComponent is vertically resizable " "/ (aComponent isKindOf:EditField) ifTrue:[ "/ ^ false @@ -289,6 +291,8 @@ ^ false ]. ^ true + + "Modified (comment): / 14-03-2018 / 20:25:53 / mawalch" ! layoutType:aViewOrComponent