-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial page size support #1148
Conversation
Can I suggest a change to the json structure for this? I don't like that we're adding two objects for every one size. sizes: [
{
name: "iso-a4",
inches: { width: 8.267716407775879, height: 11.692913055419922},
millimeters: { width: 210, height: 297 }
},
{
name: "na-letter",
inches: { width: 8.5, height: 11 },
millimeters: { width: 215.89999389648438, height: 279.3999938964844 }
},
// ... etc
] |
Do you know how to get the name? |
In the custom hashset's |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Windows Server 2012 with 1,402 printers shows no significant delay when page size is added. |
Ok, in Ubuntu, I have a case where this |
Filed a dedicated bug report: #1197 |
Adds page size information to
qz.printers.details()
TODO:
Closes #1121