diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-08-30 18:19:18 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-08-30 22:29:08 -0600 |
commit | 9c05b9622c7aa3a0874c49231249cf1859e2d031 (patch) | |
tree | 7fc81f08566dadae8a1dc101c6e62647bc21c3f5 /client.h | |
parent | d34be5d545f598bb4f07f9a07c4618e480705ca6 (diff) | |
download | dwl-9c05b9622c7aa3a0874c49231249cf1859e2d031.tar.gz |
fix style for client_set_scale()
Diffstat (limited to 'client.h')
-rw-r--r-- | client.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)); } |