UIPainter.st
changeset 333 a2e23dea36bf
parent 328 0e8a4296dec1
child 341 0f297824bcf6
equal deleted inserted replaced
332:b895330fc7aa 333:a2e23dea36bf
  1409         ^ self information:'no application class defined yet'
  1409         ^ self information:'no application class defined yet'
  1410     ].
  1410     ].
  1411     aspect := self specTool specification columns.
  1411     aspect := self specTool specification columns.
  1412     editor := DataSetBuilder new.
  1412     editor := DataSetBuilder new.
  1413     editor columns:aspect fromView:(self layoutTool layoutView).
  1413     editor columns:aspect fromView:(self layoutTool layoutView).
  1414     editor className:(self specTool specification className).
  1414     editor rowClassName:(self specTool specification rowClassName).
  1415     editor openModal.
  1415     editor openModal.
  1416 
  1416 
  1417     editor hasChanged ifTrue:[
  1417     editor hasChanged ifTrue:[
  1418         self specTool specification columns:(editor columns).
  1418         self specTool specification columns:(editor columns).
  1419         self specTool specification className:(editor className).
  1419         self specTool specification rowClassName:(editor rowClassName).
  1420         self modifiedChannel value:true.
  1420         self modifiedChannel value:true.
  1421     ].
  1421     ].
  1422 !
  1422 !
  1423 
  1423 
  1424 openEditMenu
  1424 openEditMenu