1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-26 23:31:53 +02:00

sch2fig/lib.c (draw_text): support horizontal and vertical alignment

This commit is contained in:
Werner Almesberger 2016-07-26 20:39:08 -03:00
parent 76013a5b04
commit 58cd498ded
2 changed files with 3 additions and 3 deletions

View File

@ -22,6 +22,7 @@
#include "style.h"
#include "fig.h"
#include "text.h"
#include "sch.h"
#include "lib.h"
@ -345,10 +346,10 @@ static void draw_text(const struct text_obj *text, int m[6])
.x = mx(text->x, text->y, m),
.y = my(text->x, text->y, m),
.rot = angle_add(text->orient / 10, matrix_to_angle(m)),
.hor = text_mid,
.vert = text_mid,
};
decode_alignment(&txt, text->hor_align, text->vert_align);
switch (txt.rot) {
case 180:
case 270:

View File

@ -44,7 +44,6 @@ struct comp {
};
const struct comp *lib_find(const char *name);
bool lib_field_visible(const struct comp *comp, int n);
void lib_exec(const struct comp *comp, unsigned unit, int m[6]);