Fixed node editor node linking

Because clicking was changed to happen on button up instead
of button down linking was bugged. It has been fixed and should
work now was expected.
This commit is contained in:
vurtun 2016-02-12 17:51:59 +01:00
parent fdbcc52629
commit 890430db76
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ node_editor_demo(struct zr_context *ctx, struct node_editor *nodedit)
zr_draw_circle(canvas, circle, zr_rgb(100, 100, 100));
/* start linking process */
if (zr_input_is_mouse_click_in_rect(in, ZR_BUTTON_LEFT, circle)) {
if (zr_input_has_mouse_click_down_in_rect(in, ZR_BUTTON_LEFT, circle, zr_true)) {
nodedit->linking.active = zr_true;
nodedit->linking.node = it;
nodedit->linking.input_id = it->ID;