Skip to content
Snippets Groups Projects
Commit 1e2693b3 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

add "polyline"/"polygon" to gui_draw_coords

parent 2cf9d3c0
No related branches found
No related tags found
No related merge requests found
...@@ -2986,6 +2986,13 @@ function gui_draw_coords(cid, tag, shape, points) { ...@@ -2986,6 +2986,13 @@ function gui_draw_coords(cid, tag, shape, points) {
cy: points[1] cy: points[1]
}); });
break; break;
case "polyline":
case "polygon":
configure_item(elem, {
points: points
});
break;
default:
} }
} }
......
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