Hello,
Sorry I somehow missed the exchange until now.
GTPlayground will be removed and I do not recommend doing any development on top of it.
StPlayground is the replacement and is very simple to use and extent.
However, to do what you want I didn't think in an "default" way of doing it, and you will need to override a method:
StPlaygroundPagePresenter class>>defaultSpec
^ SpBoxLayout newTopToBottom
spacing: 3;
add: #toolbar expand: false;
add: #text;
add: #statusbar expand: false;
yourself
you just need to change it with:
StPlaygroundPagePresenter class>>defaultSpec
^ SpBoxLayout newTopToBottom
spacing: 3;
add: #text;
add: #statusbar expand: false;
yourself
then you will have removed the toolbar.
Of course, maybe you do not want to override all playgrounds but just open your version some times. In that case, path is longer (I will think on how to optimise this).
To get a "clean" new version of the playground modified you will need to:
Extend StPlayground and override newDefaultPlaygroundPage
Extend StPlaygroundPage and override defaultObjectInspectorClass
Finally, extent StPlaygroundPagePresenter and override defaultSpec there.
cheers,
Esteban
On Nov 8 2021, at 8:43 pm, mspgate@gmail.com wrote:
Thanks for your reply Guillermo!
I think that the GTPlayground is already a good ���minimal��� solution for me. But I would like to make it appear without all the button icons on the upper right side
Also, I will start reading the Spec2 book tonight. :0
peace.
d