Unmark some structs as pub

This commit is contained in:
Ben Buhse 2026-03-20 10:21:16 -05:00
commit 96d34bc043
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
5 changed files with 11 additions and 12 deletions

View file

@ -55,7 +55,7 @@ pub const PendingManage = struct {
};
};
pub const PendingRender = struct {
const PendingRender = struct {
position: ?struct { x: i32, y: i32 } = null,
focused: ?bool = null,
@ -66,7 +66,7 @@ pub const PendingRender = struct {
place_top: bool = false,
};
pub const DimensionsHint = struct {
const DimensionsHint = struct {
min_width: u31 = 0,
min_height: u31 = 0,
max_width: u31 = 0,