Skip to content

Commit

Permalink
Updates build script to open an object editor
Browse files Browse the repository at this point in the history
  • Loading branch information
codeZeilen committed May 19, 2018
1 parent 668bfea commit 7d6d803
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scripts/prepare_image.st
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
|package zip ws rackIcon|
|package zip ws rackIcon contact editor|

"Update the image."
[MCMcmUpdater updateFromServer] valueSupplyingAnswer: true.
Expand Down Expand Up @@ -61,4 +61,13 @@ rackIcon := TheRack worldIcon.
ActiveWorld addMorph: rackIcon.
rackIcon position: 360@30.

contact := Person new
email: '[email protected]';
fullName: 'Patrick Rein';
note: 'If you have questions, comments, suggestions just drop me an email';
yourself.
editor := ObjectEditor openOn: contact.
editor bounds: (360@100 corner: 640@500).


SmalltalkImage current snapshot: true andQuit: true.

0 comments on commit 7d6d803

Please sign in to comment.