Completely hide close/minimise/maximise window controls #344
Closed
funnyoldgames
started this conversation in
Ideas
Replies: 1 comment 5 replies
-
@funnyoldgames Have you tried using |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Allow us to completely hide the window control buttons.
We currently have options to hide the title bar:
->titleBarHidden()
disable the minimise/maximise/close buttons:
->minimizable(false)
->maximizable(false)
->closable(false))
and hide the controls except on hover:
->titleBarButtonsOnHover()
but we have no way of hiding the controls completely.
In a windowed app, it would be helpful to allow complete hiding of the controls so we can implement our own functionality. It allows for a different user experience, and also allows us to do more interesting custom UIs
Beta Was this translation helpful? Give feedback.
All reactions