#REFACTORING by exept
authorClaus Gittinger <cg@exept.de>
Thu, 31 Oct 2019 10:25:01 +0100
changeset 3802 908abf2676e7
parent 3801 e45e18e26a7d
child 3803 34ea88ec4dc4
#REFACTORING by exept class: UIPainterView changed: #groupSelectionWithLayout:
UIPainterView.st
--- a/UIPainterView.st	Thu Oct 31 08:42:53 2019 +0100
+++ b/UIPainterView.st	Thu Oct 31 10:25:01 2019 +0100
@@ -1897,16 +1897,14 @@
                     itemValue:[
                         keepLyt := keepPos := false.
                         spec := HorizontalPanelViewSpec new.
-                        spec verticalLayout: #fit.
-                        spec horizontalLayout: #leftSpace.
+                        spec horizontalLayout: #leftSpace verticalLayout: #fit.
                     ]).
     menu addItem:(MenuItem 
                     label:'VerticalPanel'
                     itemValue:[
                         keepLyt := keepPos := false.
                         spec := VerticalPanelViewSpec new.
-                        spec verticalLayout: #topSpace.
-                        spec horizontalLayout: #fit.
+                        spec horizontalLayout: #fit verticalLayout: #topSpace.
                     ]).
 
     menu startUp.