1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-24 14:16:06 +02:00

Fix indentation in surface_is_xdg_popup()

This commit is contained in:
Simon Ser 2023-01-18 16:48:19 +01:00
parent 284966fd57
commit d5b69d5912

View File

@ -53,12 +53,12 @@ static struct wlr_surface *layer_surface_at(struct sway_output *output,
}
static bool surface_is_xdg_popup(struct wlr_surface *surface) {
if (wlr_surface_is_xdg_surface(surface)) {
struct wlr_xdg_surface *xdg_surface =
wlr_xdg_surface_from_wlr_surface(surface);
return xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP;
}
return false;
if (wlr_surface_is_xdg_surface(surface)) {
struct wlr_xdg_surface *xdg_surface =
wlr_xdg_surface_from_wlr_surface(surface);
return xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP;
}
return false;
}
static struct wlr_surface *layer_surface_popup_at(struct sway_output *output,