We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd77090 commit 5357fa8Copy full SHA for 5357fa8
crates/gitbutler-tauri/src/window.rs
@@ -325,7 +325,9 @@ pub fn create(
325
use tauri::Manager;
326
use tauri_plugin_trafficlights_positioner::WindowExt;
327
if let Some(window) = window.get_window(label) {
328
- window.setup_traffic_lights_inset(LogicalPosition::new(16.0, 25.0))?;
+ // Note that these lights get reset when the Window label is changed!
329
+ // See https://github.com/tauri-apps/tauri/issues/13044 .
330
+ window.setup_traffic_lights_inset(LogicalPosition::new(16.0, 28.0))?;
331
}
332
333
Ok(window)
0 commit comments