Skip to content

Commit

Permalink
do not use a push, now I am using the announcements
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Jan 25, 2024
1 parent 2264c1f commit e81b7d9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/Spec2-Dialogs/SpApplication.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,12 @@ SpApplication >> informUser: aString during: aBlock [
| result |

result := nil.
self jobList
pushJob: (Job new
title: aString;
block: [ :job |
job min: 0; max: 100.
result := aBlock cull: job ];
yourself).
Job new
title: aString;
block: [ :job |
job min: 0; max: 100.
result := aBlock cull: job ];
run.

^ result
]
Expand Down

0 comments on commit e81b7d9

Please sign in to comment.