aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-08-30 18:19:18 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-08-30 22:29:08 -0600
commit9c05b9622c7aa3a0874c49231249cf1859e2d031 (patch)
tree7fc81f08566dadae8a1dc101c6e62647bc21c3f5
parentd34be5d545f598bb4f07f9a07c4618e480705ca6 (diff)
downloaddwl-9c05b9622c7aa3a0874c49231249cf1859e2d031.tar.gz
fix style for client_set_scale()
-rw-r--r--client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.h b/client.h
index 9c2cff3..dabea35 100644
--- a/client.h
+++ b/client.h
@@ -332,7 +332,8 @@ client_set_fullscreen(Client *c, int fullscreen)
}
static inline void
-client_set_scale(struct wlr_surface *s, float scale) {
+client_set_scale(struct wlr_surface *s, float scale)
+{
wlr_fractional_scale_v1_notify_scale(s, scale);
wlr_surface_set_preferred_buffer_scale(s, (int32_t)ceilf(scale));
}