mirror of
https://github.com/nothings/stb
synced 2024-12-15 04:22:35 +03:00
stb_textedit: better support for keying while holding mouse drag button
This commit is contained in:
parent
64fa9a3d95
commit
9dc860b7cc
@ -451,6 +451,8 @@ static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *stat
|
||||
static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y)
|
||||
{
|
||||
int p = stb_text_locate_coord(str, x, y);
|
||||
if (state->select_start == state->select_end)
|
||||
state->select_start = state->cursor;
|
||||
state->cursor = state->select_end = p;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user