sway

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

commit d5b69d5912a5e12893ad6007f5a3bfe0bc6e047e
parent 284966fd57fb0efe1bcc6fc3ac23ae77e5a0d884
Author: Simon Ser <contact@emersion.fr>
Date:   Wed, 18 Jan 2023 16:48:19 +0100

Fix indentation in surface_is_xdg_popup()

Diffstat:
Msway/input/cursor.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sway/input/cursor.c b/sway/input/cursor.c @@ -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,