Index: trunk/doc-rnd/TODO =================================================================== --- trunk/doc-rnd/TODO (revision 2119) +++ trunk/doc-rnd/TODO (revision 2120) @@ -1,5 +1,6 @@ - BUG: place text, edit -> assert - replace settings with lihata (conf_*) + - do we need bg image in core config? - project files: - load project conf (replacing the original) after loading a .pcb - save project conf properly Index: trunk/doc-rnd/conf/tree/appearance_pinout.html =================================================================== --- trunk/doc-rnd/conf/tree/appearance_pinout.html (revision 2119) +++ trunk/doc-rnd/conf/tree/appearance_pinout.html (revision 2120) @@ -5,8 +5,8 @@ node name type flags description name_length integer 0 zoom real 0 - offset_x coord 0 offset of origin - offset_y coord 0 - text_offset_x coord 0 offset of text from pin center - text_offset_y coord 0 + offset_x coord 0 X offset of origin + offset_y coord 0 Y offset of origin + text_offset_x coord 0 X offset of text from pin center + text_offset_y coord 0 Y offset of text from pin center Index: trunk/src/conf_core.h =================================================================== --- trunk/src/conf_core.h (revision 2119) +++ trunk/src/conf_core.h (revision 2120) @@ -167,10 +167,10 @@ struct pinout { CFT_INTEGER name_length; CFT_REAL zoom; - CFT_COORD offset_x; /* offset of origin */ - CFT_COORD offset_y; - CFT_COORD text_offset_x; /* offset of text from pin center */ - CFT_COORD text_offset_y; + CFT_COORD offset_x; /* X offset of origin */ + CFT_COORD offset_y; /* Y offset of origin */ + CFT_COORD text_offset_x; /* X offset of text from pin center */ + CFT_COORD text_offset_y; /* Y offset of text from pin center */ } pinout; struct messages { CFT_INTEGER char_per_line; /* width of an output line in characters (used by separator drawing in find.c) */