You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Makes the title bar transparent, so the window background color is shown instead.
60
+
///
61
+
/// Useful if you don't need to have actual HTML under the title bar. This lets you avoid the caveats of using `TitleBarStyle::Overlay`. Will be more useful when Tauri lets you set a custom window background color.
62
+
Transparent,
63
+
/// Shows the title bar as a transparent overlay over the window's content.
64
+
///
65
+
/// Keep in mind:
66
+
/// - The height of the title bar is different on different OS versions, which can lead to window the controls and title not being where you don't expect.
67
+
/// - You need to define a custom drag region to make your window draggable, however due to a limitation you can't drag the window when it's not in focus (https://github.com/tauri-apps/tauri/issues/4316).
68
+
/// - The color of the window title depends on the system theme.
0 commit comments