Skip to content

Commit

Permalink
align parameter not saved (#3057)
Browse files Browse the repository at this point in the history
  • Loading branch information
szekerest committed Aug 21, 2013
1 parent 4a5e6be commit c4a70d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapfile.c
Expand Up @@ -2139,7 +2139,7 @@ static void writeLabel(FILE *stream, int indent, labelObj *label)
else writeNumber(stream, indent, "SIZE", -1, label->size); else writeNumber(stream, indent, "SIZE", -1, label->size);
} }


writeKeyword(stream, indent, "ALIGN", label->align, MS_ALIGN_CENTER, "CENTER", MS_ALIGN_RIGHT, "RIGHT"); writeKeyword(stream, indent, "ALIGN", label->align, 2, MS_ALIGN_CENTER, "CENTER", MS_ALIGN_RIGHT, "RIGHT");
writeNumber(stream, indent, "BUFFER", 0, label->buffer); writeNumber(stream, indent, "BUFFER", 0, label->buffer);


if(label->numbindings > 0 && label->bindings[MS_LABEL_BINDING_COLOR].item) if(label->numbindings > 0 && label->bindings[MS_LABEL_BINDING_COLOR].item)
Expand Down

0 comments on commit c4a70d7

Please sign in to comment.