- titleBarStyle: Overlay + hiddenTitle: true — removes native title bar, traffic lights float in sidebar area - Add core:window:allow-start-dragging capability - Add useDragRegion hook using startDragging() API (more reliable than data-tauri-drag-region with Overlay style) - Apply drag regions: SidebarTitleBar, NoteList header, TabBar empty zone, Inspector header - Increase header heights 45→52px to give traffic lights breathing room - Open devtools automatically in debug builds
17 lines
337 B
JSON
17 lines
337 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "enables the default permissions",
|
|
"windows": [
|
|
"main"
|
|
],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-start-dragging",
|
|
"dialog:default",
|
|
"updater:default",
|
|
"process:default",
|
|
"opener:default"
|
|
]
|
|
}
|