hpi-swa / vivide

A Squeak/Smalltalk-based programming environment and framework that supports low-effort construction of graphical tools by employing a data-driven perspective and a script-based programming model.
MIT License
59 stars 9 forks source link

Remove script from profile is not implemented yet #155

Open j4yk opened 8 years ago

j4yk commented 8 years ago

I made a copy of one composite pane and subsequently some copies of scripts of the subpanes have slipped into the Profile. I would like to take them out of there, so they do not get committed in Monticello. However, the "Remove from profile" command pops up an "Error: Not implemented." Debugger.

marceltaeumel commented 8 years ago

This might work:

myScript stepsDo: [:step |
   step unregister.
   step definition unregister].

Consistency in organization not assured. Please check with:

step references.
step definition references.
j4yk commented 8 years ago

Worked hassle-free in my situation, thank you.

marceltaeumel commented 8 years ago

:+1: