We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As identified in #1124 by @Vzor-, printers.putAll(...) will wipe out all entries of NativePrinterMap.
printers.putAll(...)
NativePrinterMap
tray/src/qz/printer/PrintServiceMatcher.java
Lines 54 to 57 in 402f924
This is because NativePrinterMap.findMissing(...) performs a destructive operation:
NativePrinterMap.findMissing(...)
tray/src/qz/printer/info/NativePrinterMap.java
Lines 46 to 64 in 402f924
The text was updated successfully, but these errors were encountered:
This will be fixed by #1124, specifically a8beeba.
Sorry, something went wrong.
Vzor-
Successfully merging a pull request may close this issue.
As identified in #1124 by @Vzor-,
printers.putAll(...)
will wipe out all entries ofNativePrinterMap
.tray/src/qz/printer/PrintServiceMatcher.java
Lines 54 to 57 in 402f924
This is because
NativePrinterMap.findMissing(...)
performs a destructive operation:tray/src/qz/printer/info/NativePrinterMap.java
Lines 46 to 64 in 402f924
The text was updated successfully, but these errors were encountered: