menu.stickyButtons()
m.stickyButtons(true | false | () )
Makes the buttons of the menu stay down when clicked. Only when
another button is clicked, the first one will turn up. Programming
logic is completely the responsability of the programmer.
Like all functions of this kind, the method can be called
in three ways: without a parameter, in which case it returns the
actual status as a boolean, or with one parameter:
true or false, in which case it sets the status
Toggling can be done by
m.stickyButtons ( ! m.stickyButtons() )