diff --git a/packages/app/src/components/titlebar.tsx b/packages/app/src/components/titlebar.tsx index d0d27e99f..7e50687d5 100644 --- a/packages/app/src/components/titlebar.tsx +++ b/packages/app/src/components/titlebar.tsx @@ -18,6 +18,7 @@ export function Titlebar() { const theme = useTheme() const mac = createMemo(() => platform.platform === "desktop" && platform.os === "macos") + const windows = createMemo(() => platform.platform === "desktop" && platform.os === "windows") const reserve = createMemo( () => platform.platform === "desktop" && (platform.os === "windows" || platform.os === "linux"), ) @@ -75,13 +76,15 @@ export function Titlebar() { } return ( -
+
@@ -116,9 +119,16 @@ export function Titlebar() {
-
+
-
+
+ +
+
diff --git a/packages/desktop/index.html b/packages/desktop/index.html index f03666d5e..7bed1e8bd 100644 --- a/packages/desktop/index.html +++ b/packages/desktop/index.html @@ -18,6 +18,7 @@
+