Lukas Renggli wrote:
A view has its own nop-command, namely PRViewCommand. So just goto
MyCommandClass and make sure that MyCommandClass answers to your view
after performing the command. To do this override #doAnswer in your
command and set the context to your custom view.
MyCommandClass>>doAnswer
self answer: (self context view: MyViewClass)
Lukas
Ahh. Thanks Lukas.
-Nick