1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-23 09:44:38 +02:00

sch2fig/fig.c (fig_label): offset was reversed for "up"

This commit is contained in:
Werner Almesberger 2016-07-26 14:05:25 -03:00
parent 629412e25c
commit 252e92fe64

View File

@ -99,7 +99,7 @@ void fig_label(int x, int y, const char *s, int dir, int dim,
case 1: /* up */ case 1: /* up */
txt.rot = 90; txt.rot = 90;
txt.hor = text_min; txt.hor = text_min;
dx = 1; dx = -1;
break; break;
case 2: /* left */ case 2: /* left */
txt.rot = 0; txt.rot = 0;