Browse Source

stb_textedit: better support for keying while holding mouse drag button

ocornut 9 years ago
parent
commit
9dc860b7cc
1 changed files with 2 additions and 0 deletions
  1. 2 0
      stb_textedit.h

+ 2 - 0
stb_textedit.h

@@ -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;
 }