Skip to content

Commit

Permalink
Close #1. This is a temporary solution.
Browse files Browse the repository at this point in the history
  • Loading branch information
hilaire committed Mar 17, 2024
1 parent d29fd26 commit 1f5900a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/DrGeo.pck.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'From Cuis6.3 [latest update: #6279] on 16 March 2024 at 7:52:11 pm'!
'From Cuis6.3 [latest update: #6279] on 17 March 2024 at 4:42:23 pm'!
'Description '!
!provides: 'DrGeo' 1 678!
!provides: 'DrGeo' 1 679!
!requires: 'Gettext' 1 17 nil!
!requires: 'SVG' 1 16 nil!
!requires: 'YAXO' 1 19 nil!
Expand Down Expand Up @@ -7391,7 +7391,7 @@ debugWindowSketch
]
ifFail: [].! !

!DrGSmalltalkSketchEditor methodsFor: 'actions' stamp: 'hlsf 1/1/2024 12:14:35'!
!DrGSmalltalkSketchEditor methodsFor: 'actions' stamp: 'drgeo 3/17/2024 16:41:14'!
executeSketch
self stopSketch.
codeView scroller acceptContents.
Expand All @@ -7401,9 +7401,12 @@ executeSketch
t := DateAndTime now.
[Compiler evaluate: model]
on: Exception
do: [debugger := Debugger
do: [:ex | | myContext |
myContext := ex signalerContext findContextSuchThat: [:aContext |
aContext method defaultSelector == #DoIt].
debugger := Debugger
openMinimalDebuggingProcess: sketchProcess
context: sketchProcess suspendedContext .
context: myContext.
self plugDebugger ].
" When we get there, sketch has been entirely executed, switch back to play button "
self switchToPlayButton.
Expand Down

0 comments on commit 1f5900a

Please sign in to comment.