Skip to content

Commit 9b513c3

Browse files
committed
fix: don't apply gap twice on scroller
1 parent ccc5299 commit 9b513c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scroller.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ void scroller_arrange(struct output_t *m, desktop_t *d, struct wlr_box available
334334
if (col->tile_count == 0)
335335
continue;
336336

337-
double col_avail_h = area_h - (double)gap * 2.0;
337+
double col_avail_h = area_h;
338338
double total_weight = 0.0;
339339
double fixed_h = 0.0;
340340

0 commit comments

Comments
 (0)