This commit is contained in:
Jeeves 2024-04-07 14:03:51 -06:00
parent 8cf18400e2
commit 6e3d7a74be

View file

@ -419,10 +419,6 @@ pub const Terminal = struct {
rect.y = parent_rect.y + self.top; rect.y = parent_rect.y + self.top;
rect.w = parent_rect.w + parent_rect.x - rect.x - self.right; rect.w = parent_rect.w + parent_rect.x - rect.x - self.right;
rect.h = parent_rect.h + parent_rect.y - rect.y - self.bottom; rect.h = parent_rect.h + parent_rect.y - rect.y - self.bottom;
// if (parent.parent) |p| {
// rect.w += p.rect.?.x;
// rect.h += p.rect.?.y;
// }
} else return self.rect.?; } else return self.rect.?;
return rect; return rect;
} }