pstoricohddst-gdi: Fix bug in page size handling
The PJL header should set a PAPER=<pagesize>, but there's a missing dollar sign, so it's not setting $papersize, which is the passed in size, it's setting PAPER=pagesize. It doesn't seem to make a difference, presumably because the printer just ignores the setting and prints the page image, but fix to match what the windows driver does Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
78542cddfe
commit
3dfb5acf4e
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ EOF
|
||||||
@PJL SET COPIES=1$e
|
@PJL SET COPIES=1$e
|
||||||
@PJL SET MEDIASOURCE=AUTO$e
|
@PJL SET MEDIASOURCE=AUTO$e
|
||||||
@PJL SET MEDIATYPE=PLAINRECYCLE$e
|
@PJL SET MEDIATYPE=PLAINRECYCLE$e
|
||||||
@PJL SET PAPER=pagesize$e
|
@PJL SET PAPER=$pagesize$e
|
||||||
@PJL SET PAPERWIDTH=$xs$e
|
@PJL SET PAPERWIDTH=$xs$e
|
||||||
@PJL SET PAPERLENGTH=$ys$e
|
@PJL SET PAPERLENGTH=$ys$e
|
||||||
@PJL SET RESOLUTION=600$e
|
@PJL SET RESOLUTION=600$e
|
||||||
|
|
Loading…
Reference in a new issue