UIPainter.st
changeset 2202 b465c7e48050
parent 2198 804e778590fc
child 2206 1a7921b6c104
equal deleted inserted replaced
2201:c68492590b1b 2202:b465c7e48050
  3258 
  3258 
  3259     (something isNil or:[tabSelection = something]) ifTrue:[
  3259     (something isNil or:[tabSelection = something]) ifTrue:[
  3260         ^ self
  3260         ^ self
  3261     ].
  3261     ].
  3262 
  3262 
  3263     self autoAcceptOnSelectionChange value ifTrue:[
  3263     self isModified ifTrue:[
  3264         self accept
  3264         self autoAcceptOnSelectionChange value ifTrue:[
  3265     ] ifFalse:[
  3265             self accept
  3266         self askForUnsavedModifications ifFalse:[^ self].
  3266         ] ifFalse:[
  3267     ].
  3267             self askForUnsavedModifications ifFalse:[^ self].
  3268 
  3268         ].
       
  3269     ].
  3269     tabSelection := something.
  3270     tabSelection := something.
  3270     self raiseTabView.
  3271     self raiseTabView.
  3271     self cancel.
  3272     self cancel.
  3272 !
  3273 !
  3273 
  3274