You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pasting into an nk_edit_string will end up in nk_str_insert_at_char which, if the edit buffer is at capacity, will fail since an insert is not possible. But, if the edit mode is NK_TEXT_EDIT_MODE_REPLACE, the characters in the edit buffer should be replaced by the pasted characters (up to max capacity) and the call should not simply fail.
The text was updated successfully, but these errors were encountered:
Pasting into an nk_edit_string will end up in nk_str_insert_at_char which, if the edit buffer is at capacity, will fail since an insert is not possible. But, if the edit mode is NK_TEXT_EDIT_MODE_REPLACE, the characters in the edit buffer should be replaced by the pasted characters (up to max capacity) and the call should not simply fail.
The text was updated successfully, but these errors were encountered: