PanelView.st
changeset 5920 98297505c7f6
parent 5907 a7c098af4b43
child 5951 6678c0b6d0cb
equal deleted inserted replaced
5919:e6ef9297a8b5 5920:98297505c7f6
   661     subViews := self subViews.
   661     subViews := self subViews.
   662     ignoreInvisibleComponents ifTrue:[
   662     ignoreInvisibleComponents ifTrue:[
   663         subViews size ~~ 0 ifTrue:[
   663         subViews size ~~ 0 ifTrue:[
   664             subViews := subViews 
   664             subViews := subViews 
   665                             select:[:v | 
   665                             select:[:v | 
   666                                             "/ if I am already realized, only consider realized subViews
   666                                     "/ if I am already realized, only consider realized subViews
   667                                             "/ otherwise, consider subViews which will be shown when I am.
   667                                     "/ otherwise, consider subViews which will be shown when I am.
   668                                             realized 
   668                                     realized 
   669                                                 ifTrue:[v realized]       
   669                                         ifTrue:[v realized]       
   670                                                 ifFalse:[v isHiddenOnRealize not]
   670                                         ifFalse:[v isHiddenOnRealize not]
   671                                    ].
   671                                    ].
   672         ].
   672         ].
   673     ].
   673     ].
   674     ^ subViews
   674     ^ subViews
   675 
   675