leehaut opened a new pull request, #7889:
URL: https://github.com/apache/hop/pull/7889
## Summary
- Remove `-Dswt.autoScale=false` from `hop-gui.bat` and `hop-gui-nolog.bat`.
- SWT 3.134+ enables monitor-specific scaling by default on Windows and only
allows `quarter` / `exact` for `swt.autoScale`.
- The previous `false` setting now conflicts with that default and prevents
the GUI from starting:
```text
===[Starting Hop]=========================================================
Error starting the Hop GUI: monitor-specific scaling is only implemented for
auto-scale values "quarter", "exact", but "false" has been specified
org.eclipse.swt.SWTError: monitor-specific scaling is only implemented for
auto-scale values "quarter", "exact", but "false" has been specified
at
org.eclipse.swt.internal.DPIUtil.updateAutoScaleValue(DPIUtil.java:118)
at org.eclipse.swt.internal.DPIUtil.<clinit>(DPIUtil.java:106)
at
org.eclipse.swt.widgets.Display.retrieveDefaultIconSize(Display.java:537)
at org.eclipse.swt.widgets.Display.<clinit>(Display.java:534)
at org.apache.hop.ui.hopgui.HopGui.setupDisplay(HopGui.java:1030)
at org.apache.hop.ui.hopgui.HopGui.main(HopGui.java:418)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]