Removed cursor hidding while property dragging

This commit is contained in:
vurtun 2018-02-12 09:44:22 +01:00
parent 0d08a53302
commit 19ce2bf091

View File

@ -310,7 +310,6 @@ nk_sdl_handle_event(SDL_Event *evt)
nk_input_button(ctx, NK_BUTTON_MIDDLE, x, y, down); nk_input_button(ctx, NK_BUTTON_MIDDLE, x, y, down);
else if (evt->button.button == SDL_BUTTON_RIGHT) else if (evt->button.button == SDL_BUTTON_RIGHT)
nk_input_button(ctx, NK_BUTTON_RIGHT, x, y, down); nk_input_button(ctx, NK_BUTTON_RIGHT, x, y, down);
else return 0;
return 1; return 1;
} else if (evt->type == SDL_MOUSEMOTION) { } else if (evt->type == SDL_MOUSEMOTION) {
/* mouse motion */ /* mouse motion */