Index: trunk/src_plugins/io_eagle/read.c =================================================================== --- trunk/src_plugins/io_eagle/read.c (revision 31871) +++ trunk/src_plugins/io_eagle/read.c (revision 31872) @@ -619,6 +619,10 @@ text_scaling = (int)((double)size/(double)EAGLE_TEXT_SIZE_100 * 100); rot = eagle_get_attrs(st, subtree, "rot", NULL); if (rot != NULL) { + if (*rot == 'M') { + mirror = PCB_TXT_MIRROR_X; + rot++; + } if (*rot == 'R') { char *end; rotdeg = strtol(rot+1, &end, 10);