From 60147b98e26719d34fce5fde9824125013370969 Mon Sep 17 00:00:00 2001 From: werner Date: Sat, 22 Aug 2009 13:18:15 +0000 Subject: [PATCH] - inst.c: we can drag points at a frame base again git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5523 99fdad57-331a-0410-800a-d7fa5415bdb3 --- TODO | 1 - inst.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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);