mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-12-23 17:55:31 +02:00
eeshow/lib-render.c (draw_pin_name): "~" means "no name"
This commit is contained in:
parent
5a2324169e
commit
1a7c311c87
@ -142,6 +142,9 @@ static void draw_pin_name(const struct comp *comp, const struct lib_pin *pin,
|
|||||||
{
|
{
|
||||||
int ox, oy, sx, sy;
|
int ox, oy, sx, sy;
|
||||||
|
|
||||||
|
if (!strcmp(pin->name, "~"))
|
||||||
|
return;
|
||||||
|
|
||||||
if (comp->name_offset) {
|
if (comp->name_offset) {
|
||||||
ox = dx * (pin->length + comp->name_offset);
|
ox = dx * (pin->length + comp->name_offset);
|
||||||
oy = dy * (pin->length + comp->name_offset);
|
oy = dy * (pin->length + comp->name_offset);
|
||||||
@ -158,8 +161,7 @@ static void draw_pin_name(const struct comp *comp, const struct lib_pin *pin,
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct text txt = {
|
struct text txt = {
|
||||||
/* @@@ or should we strcmp "~" and if 0, ignore the name ? */
|
.s = pin->name,
|
||||||
.s = *pin->name == '~' ? pin->name + 1 : pin->name,
|
|
||||||
.x = mx(pin->x + ox, pin->y + oy, m) + sx,
|
.x = mx(pin->x + ox, pin->y + oy, m) + sx,
|
||||||
.y = my(pin->x + ox, pin->y + oy, m) + sy,
|
.y = my(pin->x + ox, pin->y + oy, m) + sy,
|
||||||
.size = pin->name_size,
|
.size = pin->name_size,
|
||||||
|
Loading…
Reference in New Issue
Block a user