Skip to content

Commit c115bf4

Browse files
authored
Merge pull request #5479 from seandenigris/bug/gt-presentation-unary-DNU
GT Inspector: Fix Hook for Unary Presentation Generator
2 parents 423a98e + cb2aa05 commit c115bf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GT-Inspector/ProtoObject.extension.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ProtoObject >> gtInspectorPresentationsFromPragmas: aCollection In: composite in
5959
do: [ :eachPragma |
6060
eachPragma methodSelector numArgs = 0
6161
ifTrue: [ | presentationSource |
62-
presentationSource := self perform: eachPragma selector.
62+
presentationSource := self perform: eachPragma methodSelector.
6363
presentationSource glmPresentation
6464
cull: composite
6565
cull: aGTInspector

0 commit comments

Comments
 (0)