Place apps below the title bar, not behind it
A child webview is positioned against the window frame while the shell measures the hole it left from inside the content view. Borderless, those origins coincided and it never showed. With a title bar back they are a title bar apart, so every app was drawn that much too high - painting over the right-hand part of the bar, which read as the bar being tinted by whichever site was open, and leaving a strip of the same height along the bottom. Tauri cannot report that height. Both inner_position/outer_position and inner_size/outer_size come back identical on macOS - measured, both differences were zero against a window whose content is plainly a title bar shorter than its frame. NSWindow.contentLayoutRect knows, so it is asked once and cached. Also hides the window title, and centres the navigation row in its own strip rather than letting it crowd the bar above it.
This commit is contained in:
@@ -82,6 +82,13 @@ pub fn run() {
|
||||
// the prompt does not arrive attached to someone else's message.
|
||||
commands::ensure_notification_permission(&app.handle().clone());
|
||||
|
||||
// Measured once: every app is positioned against the window frame
|
||||
// while the shell measures from inside the content view, and the
|
||||
// two are a title bar apart.
|
||||
let handle = app.handle().clone();
|
||||
let chrome = webviews::measure_chrome(&handle);
|
||||
*handle.state::<commands::AppState>().chrome.lock().unwrap() = chrome;
|
||||
|
||||
let theme = app.state::<commands::AppState>().cfg().settings.theme;
|
||||
commands::apply_window_theme(&app.handle().clone(), &theme);
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user