diff --git a/sch2fig/lib.c b/sch2fig/lib.c index ddb8559..ea8bd71 100644 --- a/sch2fig/lib.c +++ b/sch2fig/lib.c @@ -290,6 +290,13 @@ static void draw_text(const struct text_obj *text, int m[6]) .vert = text_mid, }; + switch (txt.rot) { + case 180: + text_flip_x(&txt); + break; + default: + break; + } text_fig(&txt, COLOR_COMP_DWG, WIDTH_COMP_DWG); }