diff --git a/docs/docs/config.mdx b/docs/docs/config.mdx index 8cadea106..1a7d352d7 100644 --- a/docs/docs/config.mdx +++ b/docs/docs/config.mdx @@ -74,6 +74,7 @@ wsh editconfig | window:magnifiedblockblursecondarypx | int | change the blur in CSS pixels that is applied to the visible portions of non-magnified blocks when a block is magnified (see [backdrop-filter](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter) for more info on how this gets applied) | | window:maxtabcachesize | int | number of tabs to cache. when tabs are cached, switching between them is very fast. (defaults to 10) | | window:showmenubar | bool | set to use the OS-native menu bar (Windows and Linux only, requires app restart) | +| window:autohidetabbar | bool | show and hide the tab bar automatically when the mouse moves near the top of the window | window:nativetitlebar | bool | set to use the OS-native title bar, rather than the overlay (Windows and Linux only, requires app restart) | | window:disablehardwareacceleration | bool | set to disable Chromium hardware acceleration to resolve graphical bugs (requires app restart) | | window:savelastwindow | bool | when `true`, the last window that is closed is preserved and is reopened the next time the app is launched (defaults to `true`) | diff --git a/frontend/app/block/block.scss b/frontend/app/block/block.scss index 87c5c645b..4dbf72f28 100644 --- a/frontend/app/block/block.scss +++ b/frontend/app/block/block.scss @@ -2,6 +2,15 @@ // SPDX-License-Identifier: Apache-2.0 @use "../mixins.scss"; +@use "../tab/tabbar.scss" as tabbar; + +.darwin:not(.fullscreen) { + .block.block-frame-default .block-frame-default-header { + .window-drag.left { + width: tabbar.$darwin-not-fullscreen-indent; + } + } +} .block { display: flex; diff --git a/frontend/app/block/blockframe.tsx b/frontend/app/block/blockframe.tsx index cf17849d5..15d922af1 100644 --- a/frontend/app/block/blockframe.tsx +++ b/frontend/app/block/blockframe.tsx @@ -40,6 +40,7 @@ import clsx from "clsx"; import * as jotai from "jotai"; import * as React from "react"; import { BlockFrameProps } from "./blocktypes"; +import { WindowDrag } from "../element/windowdrag"; const NumActiveConnColors = 8; @@ -181,6 +182,8 @@ const BlockFrame_Header = ({ const preIconButton = util.useAtomValueSafe(viewModel?.preIconButton); let headerTextUnion = util.useAtomValueSafe(viewModel?.viewText); const magnified = jotai.useAtomValue(nodeModel.isMagnified); + const settings = jotai.useAtomValue(atoms.settingsAtom); + const autoHideTabBar = settings?.["window:autohidetabbar"] ?? false; const prevMagifiedState = React.useRef(magnified); const manageConnection = util.useAtomValueSafe(viewModel?.manageConnection); const dragHandleRef = preview ? null : nodeModel.dragHandleRef; @@ -252,6 +255,7 @@ const BlockFrame_Header = ({ return (