fix(native-buttons): runtime errors due to missing functions

This commit is contained in:
Elian Doran 2024-12-06 22:18:26 +02:00
parent 91a8460eea
commit ef6410f25d
No known key found for this signature in database
2 changed files with 8 additions and 7 deletions

View File

@ -62,15 +62,16 @@ function initTitleBarButtons() {
const color = style.getPropertyValue("--native-titlebar-background");
const symbolColor = style.getPropertyValue("--native-titlebar-foreground");
if (color && symbolColor) {
// FIXME, do this only on windows
// currentWindow.setTitleBarOverlay({ color, symbolColor });
if (window.glob.platform === "win32" && color && symbolColor) {
currentWindow.setTitleBarOverlay({ color, symbolColor });
}
// FIXME: call only on darwin
const xOffset = parseInt(style.getPropertyValue("--native-titlebar-darwin-x-offset"), 10);
const yOffset = parseInt(style.getPropertyValue("--native-titlebar-darwin-y-offset"), 10);
currentWindow.setWindowButtonPosition({ x: xOffset, y: yOffset });
if (window.glob.platform === "darwin") {
const xOffset = parseInt(style.getPropertyValue("--native-titlebar-darwin-x-offset"), 10);
const yOffset = parseInt(style.getPropertyValue("--native-titlebar-darwin-y-offset"), 10);
currentWindow.setWindowButtonPosition({ x: xOffset, y: yOffset });
}
}
// Update the native title bar buttons.

View File

@ -96,7 +96,7 @@ export default class DesktopLayout {
const launcherPaneIsHorizontal = (options.get("layoutOrientation") === "horizontal");
const launcherPane = this.#buildLauncherPane(launcherPaneIsHorizontal);
const isMac = (window.glob.platform === "darwin");
const isWindows = (window.glob.platform === "windows");
const isWindows = (window.glob.platform === "win32");
const hasNativeTitleBar = (window.glob.hasNativeTitleBar);
const fullWidthTabBar = (launcherPaneIsHorizontal && !isMac);
const customTitleBarButtons = (hasNativeTitleBar && !isMac && !isWindows);