diff options
| author | Arnor Nolen <andrey1gorbulin@gmail.com> | 2023-04-20 19:15:32 +0300 |
|---|---|---|
| committer | Arnor Nolen <andrey1gorbulin@gmail.com> | 2023-04-20 19:15:32 +0300 |
| commit | e668bfa49604af979d0d9482595c06ca080abdcd (patch) | |
| tree | 31ae534d6365834bc35f52a7c5dccc08883658f6 | |
| parent | 0b23ae5d1e5c38eb8bf3fb1bf4d8e6896f40085f (diff) | |
| download | dwlb-e668bfa49604af979d0d9482595c06ca080abdcd.tar.gz | |
Fixed mouse
| -rw-r--r-- | dwlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -640,7 +640,7 @@ pointer_frame(void *data, struct wl_pointer *pointer) if (!active && !occupied && !urgent) continue; } - x += TEXT_WIDTH(tags[i], seat->bar->width - x, seat->bar->textpadding); + x += TEXT_WIDTH(tags[i], seat->bar->width - x, seat->bar->textpadding) / buffer_scale; } while (seat->pointer_x >= x && ++i < tags_l); if (i < tags_l) { |