diff options
author | Simon Ser <contact@emersion.fr> | 2023-01-18 16:48:19 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-01-18 16:48:38 +0100 |
commit | d5b69d5912a5e12893ad6007f5a3bfe0bc6e047e (patch) | |
tree | 33950c223820459af9daf403eb6b059dc9c5e079 /sway/input/cursor.c | |
parent | 284966fd57fb0efe1bcc6fc3ac23ae77e5a0d884 (diff) |
Fix indentation in surface_is_xdg_popup()
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 243eb42c..498ab4d6 100644 --- 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, |