Noticing when using nk_edit_string that text handling can be a bit erratic.
An example is triggering Select All which is Ctrl + A.
raylib-nuklear correctly processes this input, but also keeps going through the rest of the keys, so what ends up happening for me is
- Enter text
- Press
Ctrl + a
- The text is selected, and
a is immediately inserted over the selection.
Expected behavior
nk_raylib_input_keyboard returns after an atomic command is captured.
Actual behavior
Commands run in succession unintentionally.
Noticing when using
nk_edit_stringthat text handling can be a bit erratic.An example is triggering
Select Allwhich isCtrl + A.raylib-nuklear correctly processes this input, but also keeps going through the rest of the keys, so what ends up happening for me is
Ctrl + aais immediately inserted over the selection.Expected behavior
nk_raylib_input_keyboardreturns after an atomic command is captured.Actual behavior
Commands run in succession unintentionally.