sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit becceafa7f12f1a1668daca0b27c4102282d9076
parent 5b1601c2e32b43cbb253fcd396ab9096f51b7e6c
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Sat, 26 May 2018 23:45:27 +1000

Remove unfinished wants_floating implementation for xwayland

Diffstat:
Msway/desktop/xwayland.c | 16----------------
1 file changed, 0 insertions(+), 16 deletions(-)

diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c @@ -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; }