mirror of
https://github.com/swaywm/sway.git
synced 2024-12-28 07:56:31 +01:00
Merge pull request #2559 from RyanDwyer/xwayland-check-modal
Check modal state when determining whether an xwayland view should float
This commit is contained in:
commit
159edc6d13
1 changed files with 3 additions and 1 deletions
|
@ -218,7 +218,9 @@ static bool wants_floating(struct sway_view *view) {
|
||||||
struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
|
struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
|
||||||
struct sway_xwayland *xwayland = &server.xwayland;
|
struct sway_xwayland *xwayland = &server.xwayland;
|
||||||
|
|
||||||
// TODO: return true if the NET_WM_STATE is MODAL
|
if (surface->modal) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
for (size_t i = 0; i < surface->window_type_len; ++i) {
|
for (size_t i = 0; i < surface->window_type_len; ++i) {
|
||||||
xcb_atom_t type = surface->window_type[i];
|
xcb_atom_t type = surface->window_type[i];
|
||||||
|
|
Loading…
Reference in a new issue