diff --git a/TODO b/TODO index 549caf1..4c21fee 100644 --- a/TODO +++ b/TODO @@ -36,7 +36,6 @@ Bugs: - whenever we call parse_* for input parsing, we may leak lots of expressions - can't edit measurement labels through the GUI - unbalanced parentheses in text throw off Postscript syntax -- we can't drag points that are at a frame base Code cleanup: - merge edit_unique with edit_name diff --git a/inst.c b/inst.c index 99151e2..db94b43 100644 --- a/inst.c +++ b/inst.c @@ -301,7 +301,7 @@ int inst_find_point_selected(struct coord pos, struct inst **res) } } } else { - FOR_ALL_INSTS(j, ip_vec, inst) { + FOR_ALL_INSTS(j, ip_frame, inst) { if (inst != selected_inst->outer) continue; d = gui_dist_frame(inst, pos, draw_ctx.scale);