On Fri, 8 Jul 2022 20:30:32 GMT, Phil Race <p...@openjdk.org> wrote: >> This fixes the issue that the default printer or set of available printers >> is fixed from the first call to it in the lifetime of the application. >> Now subsequent calls will check to see if there are changes. >> A manual test is provided for verifying this - it requires you to add/remove >> printers at the system level to verify anything related to this fix. > > Phil Race has updated the pull request incrementally with one additional > commit since the last revision: > > 8288137
modules/javafx.graphics/src/main/java/com/sun/prism/j2d/PrismPrintPipeline.java line 133: > 131: PrintServiceLookup.lookupPrintServices(null, null); > 132: if ((newServices.length != printerSet.size()) || > 133: (lastTime + 120000) > System.currentTimeMillis()) { I missed this earlier. The test is backwards. It should be `<` not `>` . ------------- PR: https://git.openjdk.org/jfx/pull/817