#tooltip, selector menu esque floating window in linux
17 messages · Page 1 of 1 (latest)
can you change the part you want on top of the rest of the ui as having position_type of PositionType::Absolute ? https://docs.rs/bevy_ui/latest/bevy_ui/struct.Node.html
https://docs.rs/bevy_ui/latest/bevy_ui/enum.PositionType.html#variant.Absolute
The base component for UI entities. It describes UI layout and style properties.
The strategy used to position this node
Unfortunately, the main window is supposed to be smaller. so that won't work 😦
oh sorry i misread
you want the dropdown to be a separate window? bevy has a window api https://docs.rs/bevy/latest/bevy/window/index.html
bevy_window provides a platform-agnostic interface for windowing in Bevy.
Yea, that's kind of the problem. Whatever I do, hyprland treats the popup window as a regular window
have you tried to change the window level to be always on top
https://docs.rs/bevy/latest/bevy/window/enum.WindowLevel.html
Specifies where a Window should appear relative to other overlapping windows (on top or under) .
what is the problem with the current popup window?