mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-05 17:07:11 +02:00
sch2fig/fig.c (fig_label): support orientation 1 (up)
This commit is contained in:
parent
fe15498ef1
commit
e37765fd12
@ -96,6 +96,11 @@ void fig_label(int x, int y, const char *s, int dir, int dim,
|
|||||||
txt.hor = text_min;
|
txt.hor = text_min;
|
||||||
dy = 1;
|
dy = 1;
|
||||||
break;
|
break;
|
||||||
|
case 1: /* up */
|
||||||
|
txt.rot = 90;
|
||||||
|
txt.hor = text_min;
|
||||||
|
dx = 1;
|
||||||
|
break;
|
||||||
case 2: /* left */
|
case 2: /* left */
|
||||||
txt.rot = 0;
|
txt.rot = 0;
|
||||||
txt.hor = text_max;
|
txt.hor = text_max;
|
||||||
|
Loading…
Reference in New Issue
Block a user