feat: add \hide to styling dict to allow hiding elements from gui
Hi! This is something I found useful for myself – the ability to hide an element from a gui. This is for example useful for devices like sequencers where it is hard to create a 1:1 representation of the midi notes received by SuperCollider in a GUI and it's just easier to hide it from the GUI and only interface with it in code. Example:
(
key: midiNoteNum.asSymbol,
midiNum: midiNoteNum,
elementType: \pad,
ioType: \in,
midiMsgType: \noteOnOff,
groupType: \noteOnOff,
midiChan: midiChan,
page: midiChan,
style: (
hide: true,
showLabel: false
),
)
intersting idea! would you mind fixing indentations of your edits? Looks like you use spaces instead of tabs...
you still interested in this?
I don't have time to work on this at the moment, sorry ! <3
I'll see if I find time to correct the indentations