X Tutup
Skip to content

Commit 85380c9

Browse files
author
Johan Brichau
committed
Fix debugger opening on Pharo9
1 parent 699f293 commit 85380c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/openDebuggerOn..st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ openDebuggerOn: anError
1111
UnhandledError signalForException: anError ]
1212
ifFalse: [
1313
WorldState addDeferredUIMessage: [
14-
process
15-
debug: anError signalerContext
16-
title: anError description
17-
full: true ].
14+
UIManager default
15+
requestDebuggerOpeningForProcess: process
16+
named: anError description
17+
inContext: anError signalerContext ].
1818
process suspend ]

0 commit comments

Comments
 (0)
X Tutup