fix overlapping tiles

This commit is contained in:
2025-11-16 00:00:08 +01:00
parent f18e43c2c6
commit 6b75a50ed5
2 changed files with 5 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ bool is_scroller_layout(Monitor *m) {
if (m->pertag->ltidxs[m->pertag->curtag]->id == VERTICAL_SCROLLER)
return true;
if (m->pertag->ltidxs[m->pertag->curtag]->id == DUAL_SCROLLER)
return true;
return false;
}

View File

@@ -498,6 +498,8 @@ void resize_tile_client(Client *grabc, bool isdrag, int offsetx, int offsety,
resize_tile_scroller(grabc, isdrag, offsetx, offsety, time, false);
} else if (current_layout->id == VERTICAL_SCROLLER) {
resize_tile_scroller(grabc, isdrag, offsetx, offsety, time, true);
} else if (current_layout->id == DUAL_SCROLLER) {
resize_tile_scroller(grabc, isdrag, offsetx, offsety, time, false);
}
}