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
gui.c
View File

@@ -115,7 +115,7 @@ static void edit_var(struct var *var)
inst_select_outside(var, unselect_var);
label_in_box_bg(var->widget, COLOR_VAR_EDITING);
status_set_type_entry("name =");
status_set_name(var->name);
status_set_name("%s", var->name);
edit_unique(&var->name, validate_var_name, var);
}
@@ -493,7 +493,7 @@ static void edit_frame(struct frame *frame)
inst_select_outside(frame, unselect_frame);
label_in_box_bg(frame->label, COLOR_FRAME_EDITING);
status_set_type_entry("name =");
status_set_name(frame->name);
status_set_name("%s", frame->name);
edit_unique(&frame->name, validate_frame_name, frame);
}