PROP 65
PROP 65
Adds key repeat for nk_keys (Arrows, Home, End, Backspace, Delete, etc). The default delay and interval can be changed, as well as updated at runtime. ```c /* send 20 inputs...
An alternative method to achieve something similar to #560 The idea is to use the UTF-8 [Private Use Area](https://en.wikipedia.org/wiki/Private_Use_Areas) ( U+E000 -> U+F8FF ) to pass instructions to the text...
Splits `NK_WINDOW_NO_SCROLLBAR` into separate horizontal and vertical flags. ```c /* Removes the horizontal scrollbar from the window */ NK_WINDOW_NO_SCROLLBAR_H = NK_FLAG(5) /* Removes the vertical scrollbar from the window */...
Adds macros from formatting the nk data types | Macro | Type | |-|-| | NK_FMT_CHAR | nk_char | | NK_FMT_UCHAR | nk_uchar | | NK_FMT_BYTE | nk_byte | |...
clang-format does not have the most granular configuration so some things (like different pointer placement on unnamed arguments in function prototypes) are not currently achievable. From the tinkering I've done...