diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2021-02-14 12:43:10 -0600 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2021-02-14 12:43:10 -0600 |
commit | 3e82fad9c4c8bcc1712bfe83e37280c8ef498e0b (patch) | |
tree | 3eae28fbf7a8c9a533e398caa73630da36c167ee | |
parent | a4c0b914f09b40e27df535dc20913d0fddcc2c62 (diff) |
fix style on space-indented function
-rw-r--r-- | dwl.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2411,11 +2411,11 @@ zoom(const Arg *arg) void activatex11(struct wl_listener *listener, void *data) { - Client *c = wl_container_of(listener, c, activate); + Client *c = wl_container_of(listener, c, activate); - /* Only "managed" windows can be activated */ - if (c->type == X11Managed) - wlr_xwayland_surface_activate(c->surface.xwayland, 1); + /* Only "managed" windows can be activated */ + if (c->type == X11Managed) + wlr_xwayland_surface_activate(c->surface.xwayland, 1); } void |