You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently glazier allows the title bar to be disabled but this also disables the OS native buttons for closing and resizing (and macOS and windows stop treating them as main application windows).
This is fine but it would be nice to be able to configure a the window to have a full content view but still keep the OS native buttons and title_bar.
On macOS this can be done by adding NSWindowStyleMask::NSFullSizeContentViewWindowMask to the style_maskhere
and by setting the window.setTitlebarAppearsTransparent_ with true.
I could open a PR for this but I wasn't sure how to name these items and also how to ensure consistency with windows / linux.
Currently glazier allows the title bar to be disabled but this also disables the OS native buttons for closing and resizing (and macOS and windows stop treating them as main application windows).
This is fine but it would be nice to be able to configure a the window to have a full content view but still keep the OS native buttons and title_bar.
On macOS this can be done by adding
NSWindowStyleMask::NSFullSizeContentViewWindowMaskto thestyle_maskhereand by setting the
window.setTitlebarAppearsTransparent_with true.I could open a PR for this but I wasn't sure how to name these items and also how to ensure consistency with windows / linux.