Skip to content
Snippets Groups Projects
Commit e73f3972 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*fixed one stale leftover of redrawing the patchcords inside graph that did...

*fixed one stale leftover of redrawing the patchcords inside graph that did not conform to the new style of drawing cords
parent 260c205c
No related branches found
No related tags found
No related merge requests found
......@@ -820,9 +820,10 @@ void glist_redraw(t_glist *x)
/* redraw all the lines */
linetraverser_start(&t, x);
while (oc = linetraverser_next(&t))
sys_vgui(".x%lx.c coords l%lx %d %d %d %d\n",
glist_getcanvas(x), oc,
t.tr_lx1, t.tr_ly1, t.tr_lx2, t.tr_ly2);
canvas_updateconnection(glist_getcanvas(x), t.tr_lx1, t.tr_ly1, t.tr_lx2, t.tr_ly2, (t_int)oc);
//sys_vgui(".x%lx.c coords l%lx %d %d %d %d\n",
// glist_getcanvas(x), oc,
// t.tr_lx1, t.tr_ly1, t.tr_lx2, t.tr_ly2);
canvas_drawredrect(x, 0);
if (x->gl_goprect)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment