Fix application of exclusive zones

Fixes https://github.com/ifreund/river/issues/13
This commit is contained in:
Isaac Freund 2020-04-27 11:10:59 +02:00
parent 2b0b32c030
commit 9b1197feb3
No known key found for this signature in database
GPG key ID: 86DED400DDFD7A11

View file

@ -235,11 +235,14 @@ pub const Output = struct {
} }
// Apply offsets from borders and padding // Apply offsets from borders and padding
new_box.x += @intCast(i32, border_width + outer_padding + view_padding); const xy_offset = @intCast(i32, border_width + outer_padding + view_padding);
new_box.y += @intCast(i32, border_width + outer_padding + view_padding); new_box.x += self.usable_box.x + xy_offset;
new_box.y += self.usable_box.y + xy_offset;
new_box.width -= (border_width + view_padding) * 2; // Reduce size to allow space for borders/padding
new_box.height -= (border_width + view_padding) * 2; const delta_size = (border_width + view_padding) * 2;
new_box.width -= delta_size;
new_box.height -= delta_size;
// Set the view's pending box to the new dimensions // Set the view's pending box to the new dimensions
view.pending_box = new_box; view.pending_box = new_box;