Patrick Doane
Patrick Doane
- Use builtin.target instead of std.Target.current - Fix loop check to use is_framework instead of is_sys_lib
I suspect there is a bug in the Zoe annotator where width and height are being swapped? https://github.com/lllyasviel/ControlNet-v1-1-nightly/blob/main/annotator/zoe/zoedepth/models/base_models/midas.py#L180
I am successfully using libbacktrace for simple mach-o executables but the logic to find the .dSYM file is not working for application bundles. For example, the filename for macho_add_dsym looks...
I would like a mechanism to query hover state when multiple elements are on top of each other. The implementation of Clay_PointerOver has a "TODO return priority for separating multiple...
Currently text alignment is `left, center, right` and layout alignment is `left, right, center`. At a higher level I use the same enumeration value for both text alignment and layout...
When the number of elements in a container exceeds its `size / padding`, then each additional element increases the scroll container dimension by the padding size. For example, with the...
On the first frame rendering, `scrollContainerDimensions` is `(0,0)` but it seems to me like it should be `(padding.left + padding.right, padding.top + padding.bottom)`? Various layout equations need to subtract padding...
Using commit e4e7b113a9456e6374c6f482ccb6bc0a72c6f39d (current latest commit on main). I am trying to center an image in a container where it will shrink to fit down to a minimum size. ```...
Is support for this planned in the future? I would like to include this information in diagnostics, both from parse errors as well as semantic analysis of the nodes. Thanks!
I do not see how to parse this with the grammar: ``` foo123{bar} ``` Relevant bits: ``` node-children := '{' nodes final-node? '}' base-node := slashdash? type? node-space* string (node-space+...