1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-06-30 21:25:27 +03:00

- 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
This commit is contained in:
werner 2009-08-22 13:18:15 +00:00
parent a44530f621
commit 60147b98e2
2 changed files with 1 additions and 2 deletions

1
TODO
View File

@ -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

2
inst.c
View File

@ -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);