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

sch2fig/dwg.c (dwg_glabel): tag global labels

This commit is contained in:
Werner Almesberger 2016-08-01 10:27:46 -03:00
parent 065c82cf25
commit ae736a0fdf

View File

@ -11,6 +11,7 @@
*/
#define _GNU_SOURCE /* for asprintf */
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
@ -116,6 +117,7 @@ void dwg_glabel(int x, int y, const char *s, int dir, int dim,
enum box_type box;
int dx, shift_flat, shift_tip;
bool anchor_right = 1;
char *tag;
switch (shape) {
case dwg_unspec:
@ -232,6 +234,9 @@ void dwg_glabel(int x, int y, const char *s, int dir, int dim,
vx[0] = vx[n - 1];
vy[0] = vy[n - 1];
gfx_poly(n, vx, vy, COLOR_GLABEL, COLOR_NONE, LAYER_GLABEL);
if (asprintf(&tag, "G:%s", s)) {}
gfx_tag(tag, n, vx, vy);
}