File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ const TabBar = memo(({ workspace }: TabBarProps) => {
174
174
const isFullScreen = useAtomValue ( atoms . isFullScreen ) ;
175
175
176
176
const settings = useAtomValue ( atoms . settingsAtom ) ;
177
- const autoHideTabsBar = useRef < boolean > ( settings [ "window:autoHideTabsBar " ] ) ;
177
+ const autoHideTabsBar = useRef < boolean > ( settings [ "window:autohidetabsbar " ] ) ;
178
178
179
179
let prevDelta : number ;
180
180
let prevDragDirection : string ;
Original file line number Diff line number Diff line change @@ -649,7 +649,7 @@ declare global {
649
649
"window:reducedmotion" ?: boolean ;
650
650
"window:tilegapsize" ?: number ;
651
651
"window:showmenubar" ?: boolean ;
652
- "window:autoHideTabsBar " ?: boolean ;
652
+ "window:autohidetabsbar " ?: boolean ;
653
653
"window:nativetitlebar" ?: boolean ;
654
654
"window:disablehardwareacceleration" ?: boolean ;
655
655
"window:maxtabcachesize" ?: number ;
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const (
61
61
ConfigKey_WindowReducedMotion = "window:reducedmotion"
62
62
ConfigKey_WindowTileGapSize = "window:tilegapsize"
63
63
ConfigKey_WindowShowMenuBar = "window:showmenubar"
64
- ConfigKey_WindowAutoHideTabsBar = "window:autoHideTabsBar "
64
+ ConfigKey_WindowAutoHideTabsBar = "window:autohidetabsbar "
65
65
ConfigKey_WindowNativeTitleBar = "window:nativetitlebar"
66
66
ConfigKey_WindowDisableHardwareAcceleration = "window:disablehardwareacceleration"
67
67
ConfigKey_WindowMaxTabCacheSize = "window:maxtabcachesize"
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ type SettingsType struct {
88
88
WindowReducedMotion bool `json:"window:reducedmotion,omitempty"`
89
89
WindowTileGapSize * int64 `json:"window:tilegapsize,omitempty"`
90
90
WindowShowMenuBar bool `json:"window:showmenubar,omitempty"`
91
- WindowAutoHideTabsBar bool `json:"window:autoHideTabsBar ,omitempty"`
91
+ WindowAutoHideTabsBar bool `json:"window:autohidetabsbar ,omitempty"`
92
92
WindowNativeTitleBar bool `json:"window:nativetitlebar,omitempty"`
93
93
WindowDisableHardwareAcceleration bool `json:"window:disablehardwareacceleration,omitempty"`
94
94
WindowMaxTabCacheSize int `json:"window:maxtabcachesize,omitempty"`
You can’t perform that action at this time.
0 commit comments