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
Hi, when the app is running on some Linux distros the close, minimize or maximize buttons in native window bar, are unresponsive. Clicking or hovering them does nothing. User has to double-click the window bar then somehow they start working as expected, but it's clunky and not very reliable.
Note: it seems it only happens on Wayland. I tested the same app on a bunch of distros, and only
Ubuntu24 (wayland) seems to be impacted. Eg, debian12 XFCE or PopOs22 which are both on X11 don't have the issue.
No error in logs (at least tauri app process).
The window config is declared in Rust, nothing fancy:
let window = WebviewWindowBuilder::new(app, "main", "index.html")
.title("my_app")
.fullscreen(false)
.resizable(true)
.closable(true)
.minimizable(true)
.maximizable(true)
.center()
.focused(true)
.inner_size(328.0, 710.0)
.build()
.inspect_err(|e| error!("failed to create main window: {e}"))?;
It seems this has been previously reported but not fixed: #11631
Could be related to #11945
Reproduction
create a simple app using the window config shared above and testing the window buttons after the window open
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
Hi, when the app is running on some Linux distros the close, minimize or maximize buttons in native window bar, are unresponsive. Clicking or hovering them does nothing. User has to double-click the window bar then somehow they start working as expected, but it's clunky and not very reliable.
Note: it seems it only happens on Wayland. I tested the same app on a bunch of distros, and only
Ubuntu24 (wayland) seems to be impacted. Eg, debian12 XFCE or PopOs22 which are both on X11 don't have the issue.
No error in logs (at least tauri app process).
The window config is declared in Rust, nothing fancy:
It seems this has been previously reported but not fixed: #11631
Could be related to #11945
Reproduction
create a simple app using the window config shared above and testing the window buttons after the window open
testing on Ubuntu24 default flavor (wayland)
Expected behavior
No response
Full
tauri info
outputThe text was updated successfully, but these errors were encountered: