PROP 65
PROP 65
#669
I've reworked this patch to make the key repeat functionality more generic/reusable. Most of the changes have been moved to `nuklear_input.c` and a new function is provided (`nk_input_is_key_fired`) to check...
Glazier has been deprecated. According to its README it "[is no longer supported, and should not be used.](https://github.com/linebender/glazier/blob/8d253c3d4ad12c1dd491895bf3eb8ef1728d01b6/README.md?plain=1#L22)"
https://github.com/Immediate-Mode-UI/Nuklear/blob/74a12afc620191616c9e9eb2e1bae60e8144a879/nuklear.h#L286-L296 `_dummy_array` is used for compile time asserts (`NK_STATIC_ASSERT`) If `_MSC_VER` is defined, then 214 is the value of `__COUNTER__`, otherwise check for a `NK_STATIC_ASSERT` on line 214

Converted to draft. Text rendering state gets reset on line break and some backends have issue. This still needs quite a bit of work.
> @PROP65 would you need a hand with this PR? I'll be happy to offer help here. If you would like to try to implement this feature yourself feel free...
I don't think casting `i` to a signed type in `nk_ptr_add` would be an appropriate fix as the underflow would occur before the cast and might cause it's own issues....
PRI macros were added in C99 to be used with types from stdint.h Since Nuklear is C89 and can't require `inttypes.h` I'd say the best way to implement this is...
#739