1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- previous Makefile change was: tentative fix for compatibility with older

ImageMagick versions (reported by Alvaro Lopes)
- we can now also select the frame's origin as a reference
- added general frame selection logic
- make sure we always use %s when passing names to status_set_name
- we can now drag endpoints (in progress)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5385 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-04 18:03:06 +00:00
parent 5add8b5229
commit 8377ab0e0d
9 changed files with 281 additions and 44 deletions

4
obj.c
View File

@@ -244,7 +244,9 @@ static int generate_frame(struct frame *frame, struct coord base,
/*
* We ensure during construction that frames can never recurse.
*/
inst_begin_frame(frame, base, active && frame == active_frame);
inst_begin_frame(frame, base,
active && parent == active_frame,
active && frame == active_frame);
frame->curr_parent = parent;
ok = iterate_tables(frame, frame->tables, base, active);
inst_end_frame(frame);