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
The only workaround I found for now is to set GDK_BACKEND=x11 to run the window with XWayland. The problem only concerns Gnome + Wayland and not KDE + Wayland.
Steps To Reproduce
be on Gnome + Wayland
here is my very simple code :
use dioxus::desktop::Config;use dioxus::prelude::*;fnmain(){LaunchBuilder::desktop().with_cfg(Config::new().with_menu(None),// remove the default menu).launch(App)}#[component]fnApp() -> Element{rsx!{HelloWorld{}}}#[component]fnHelloWorld() -> Element{rsx!{span {"Hello, World!"}}}
Environment:
Dioxus version: 0.6.0
Rust version: 1.83.0
OS info: Arch Linux
App platform: desktop
The text was updated successfully, but these errors were encountered:
Problem
When using dioxus desktop 0.6.0 on Gnome + Wayland the window can't be resized or moved.
I think it's related to this tauri issue tauri-apps/tauri#10686
The only workaround I found for now is to set GDK_BACKEND=x11 to run the window with XWayland. The problem only concerns Gnome + Wayland and not KDE + Wayland.
Steps To Reproduce
Environment:
The text was updated successfully, but these errors were encountered: