Rendering my disgusting font. using it in a few places. wow its hideous
This commit is contained in:
parent
6fe94ddfb2
commit
169b067050
5 changed files with 59 additions and 19 deletions
|
|
@ -228,8 +228,13 @@ export function _measure(ui: UIValue): { width: number, height: number } {
|
|||
}
|
||||
}
|
||||
|
||||
case 'positioned':
|
||||
return measure(ui.child);
|
||||
case 'positioned': {
|
||||
const childSize = measure(ui.child);
|
||||
return {
|
||||
width: ui.x + childSize.width,
|
||||
height: ui.y + childSize.height,
|
||||
};
|
||||
}
|
||||
|
||||
case 'stack': {
|
||||
let maxWidth = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue