Refactored mac titlebar options

This commit is contained in:
Lea Anthony
2020-09-24 05:57:32 +10:00
parent 72fc2204b4
commit ef11f45df8
4 changed files with 30 additions and 17 deletions

16
v2/pkg/options/mac/mac.go Normal file
View File

@@ -0,0 +1,16 @@
package mac
// Options ae options speific to Mac
type Options struct {
TitleBar *TitleBar
}
// TitleBar contains options for the Mac titlebar
type TitleBar struct {
TitlebarAppearsTransparent bool
HideTitle bool
HideTitleBar bool
FullSizeContent bool
UseToolbar bool
HideToolbarSeparator bool
}