aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 2adc28c5..68d70b64 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -218,7 +218,9 @@ static bool wants_floating(struct sway_view *view) {
218 struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface; 218 struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
219 struct sway_xwayland *xwayland = &server.xwayland; 219 struct sway_xwayland *xwayland = &server.xwayland;
220 220
221 // TODO: return true if the NET_WM_STATE is MODAL 221 if (surface->modal) {
222 return true;
223 }
222 224
223 for (size_t i = 0; i < surface->window_type_len; ++i) { 225 for (size_t i = 0; i < surface->window_type_len; ++i) {
224 xcb_atom_t type = surface->window_type[i]; 226 xcb_atom_t type = surface->window_type[i];