Skip to content

Commit

Permalink
Add inspector extensions to see gs_options
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Apr 3, 2024
1 parent 148d1d3 commit 82e3604
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions source/Buoy-Development-Tools/Behavior.extension.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Extension { #name : 'Behavior' }

{ #category : '*Buoy-Development-Tools' }
Behavior >> inspectionGs64Options: builder [

<inspectorPresentationOrder: 916 title: 'GS64 Options'>
^ builder newTable
addColumn:
(SpStringTableColumn
title: 'Option'
evaluated: [ :option | option ]);
items: (self propertyAt: #gs_options);
yourself
]

{ #category : '*Buoy-Development-Tools' }
Behavior >> inspectionGs64OptionsContext: aContext [

aContext active: (self hasProperty: #gs_options)
]

0 comments on commit 82e3604

Please sign in to comment.