MenuEditor.st
changeset 1299 2e9c6d67fed8
parent 1264 a8588e94d16f
child 1301 dc5c4a8e6e6e
equal deleted inserted replaced
1298:64cfa48905dc 1299:2e9c6d67fed8
  2328     "/ before bringing up the new notebook page,
  2328     "/ before bringing up the new notebook page,
  2329     "/ we must disable all now invisible input fields ...
  2329     "/ we must disable all now invisible input fields ...
  2330     "/ (otherwise, those would fire on #accept.
  2330     "/ (otherwise, those would fire on #accept.
  2331 
  2331 
  2332     canvasView := self tabCanvasHolder value.
  2332     canvasView := self tabCanvasHolder value.
       
  2333 
  2333     canvasView notNil ifTrue:[
  2334     canvasView notNil ifTrue:[
       
  2335         canvasView unmap.
       
  2336 
  2334         canvasView allSubViewsDo:[:aComponent |
  2337         canvasView allSubViewsDo:[:aComponent |
  2335             aComponent isInputField ifTrue:[
  2338             aComponent isInputField ifTrue:[
  2336                 aComponent disableIfInvisible:true
  2339                 aComponent disableIfInvisible:true
  2337             ]
  2340             ]
  2338         ]
  2341         ]