Remove unfinished wants_floating implementation for xwayland

This commit is contained in:
Ryan Dwyer 2018-05-26 23:45:27 +10:00
parent 5b1601c2e3
commit becceafa7f
1 changed files with 0 additions and 16 deletions

View File

@ -201,22 +201,6 @@ static bool wants_floating(struct sway_view *view) {
//
// We also want to return true if the NET_WM_STATE is MODAL.
// wlroots doesn't appear to provide all this information at the moment.
struct wlr_xwayland_surface *xsurface = view->wlr_xwayland_surface;
uint32_t *atom = xsurface->window_type;
for (size_t i = 0; i < xsurface->window_type_len; ++i) {
wlr_log(L_DEBUG, "xwayland window type %i", *atom);
// TODO: Come up with a better way of doing this
switch (*atom) {
case 36: // NET_WM_WINDOW_TYPE_UTILITY
case 44: // NET_WM_WINDOW_TYPE_SPLASH
case 276: // ? PGP passphrase dialog
case 337: // ? Firefox open file dialog
case 338: // ? Firefox open file dialog
return true;
}
++atom;
}
return false;
}