fix(desktop): remove titlebar inset in fullscreen (#38793)

This commit is contained in:
Luke Parker 2026-07-27 13:54:54 +10:00 committed by GitHub
commit a9afed0515
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 48 additions and 92 deletions

View file

@ -97,6 +97,9 @@ type PlatformBase = {
/** Webview zoom level (desktop only) */
webviewZoom?: Accessor<number>
/** Whether the native desktop window is fullscreen */
windowFullscreen?: Accessor<boolean>
/** Get whether native pinch/Ctrl-scroll zoom gestures are enabled (desktop only) */
getPinchZoomEnabled?(): Promise<boolean> | boolean