libvaxis icon indicating copy to clipboard operation
libvaxis copied to clipboard

window: type for width/heigh should be `?usize` instead of a tagged union

Open rockorager opened this issue 4 months ago • 0 comments

This makes calls looks like this:

const child = window.child(.{.width = 10});

Instead of

const child = window.child(.{.width = .{.limit = 10 }});

Currently this value defaults to .fill, which semantically we would make equivalent to null

rockorager avatar Oct 06 '24 10:10 rockorager