Skip to content

Commit

Permalink
Correct page height for Zebra CPCL output
Browse files Browse the repository at this point in the history
PAGE-HEIGHT is being set to cupsWidth rather than cupsHeight.
  • Loading branch information
benlees authored Jul 8, 2018
1 parent 77094a2 commit eadeefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter/rastertolabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ StartPage(ppd_file_t *ppd, /* I - PPD file */
header->HWResolution[1], header->cupsHeight,
header->NumCopies);
printf("PAGE-WIDTH %u\r\n", header->cupsWidth);
printf("PAGE-HEIGHT %u\r\n", header->cupsWidth);
printf("PAGE-HEIGHT %u\r\n", header->cupsHeight);
break;

case INTELLITECH_PCL :
Expand Down

0 comments on commit eadeefa

Please sign in to comment.