#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Tue, 20 Feb 2018 18:46:07 +0100
changeset 3536 38fca9ee0d55
parent 3535 e8ad4febf6f4
child 3537 6aacb49f2f25
#REFACTORING by stefan class: MenuEditor changed: #commonPostBuild outsource code into #useAlienInfoHolder method
MenuEditor.st
--- a/MenuEditor.st	Tue Feb 20 18:45:52 2018 +0100
+++ b/MenuEditor.st	Tue Feb 20 18:46:07 2018 +0100
@@ -2280,14 +2280,16 @@
 commonPostBuild
     self autoAcceptOnSelectionChange addDependent:self.
     self autoAcceptOnSelectionChange value ifTrue:[
-	(builder componentAt:'okButton') label:(resources string:'Apply')
+        (builder componentAt:'okButton') label:(resources string:'Apply')
     ].
 
     "/ using masters infoHolder ?
-    (builder aspectAt:#useAlienInfoLabelHolder) == true ifTrue:[
-	(builder componentAt:#mainPanel) layout bottomOffset:0.
-	(builder componentAt:#infoBarSubSpec) beInvisible
+    self useAlienInfoLabelHolder ifTrue:[
+        (builder componentAt:#mainPanel) layout bottomOffset:0.
+        (builder componentAt:#infoBarSubSpec) beInvisible
     ]
+
+    "Modified: / 20-02-2018 / 13:05:21 / stefan"
 !
 
 commonPostOpen