We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf62ec6 commit a0cad67Copy full SHA for a0cad67
frontend/types/gotypes.d.ts
@@ -736,7 +736,7 @@ declare global {
736
"window:tilegapsize"?: number;
737
"window:showmenubar"?: boolean;
738
"window:nativetitlebar"?: boolean;
739
- "window:tabbarposition"?: string;
+ "window:tabbarposition"?: "top" | "bottom";
740
"window:disablehardwareacceleration"?: boolean;
741
"window:maxtabcachesize"?: number;
742
"window:magnifiedblockopacity"?: number;
schema/settings.json
@@ -183,7 +183,9 @@
183
"type": "boolean"
184
},
185
"window:tabbarposition": {
186
- "type": "string"
+ "type": {
187
+ "enum": ["top", "bottom"]
188
+ }
189
190
"window:disablehardwareacceleration": {
191
0 commit comments