# WARNING: head commit changed in the meantime

Merge branch 'master' of git@github.com:jzy3d/jzy3d-api.git
This commit is contained in:
Martin Pernollet 2022-04-29 09:28:19 +02:00
parent 6b54dd4753
commit cd92c12899
2 changed files with 3 additions and 1 deletions

View File

@ -129,6 +129,8 @@ public class EmulGLCanvas extends GLCanvas implements IScreenCanvas, IMonitorabl
// Check if current screen change to trigger repaint in case hiDPI support is different
// Going from HiDPI to non HiDPI screen lead to poor picture and bigger font otherwise
//
// This code is mainly useful on macOS as the JVM do not receive OS order to repaint after monitor change (windows does)
CurrentScreenWatch screenWatch = new CurrentScreenWatch(this) {
@Override
protected void fireScreenChange(double screenWidth, double screenHeight) {

View File

@ -88,7 +88,7 @@ You should add this to your pom file dependencies node, using the latest Jzy3d v
```
<dependency>
<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-jGL</artifactId>
<artifactId>jzy3d-jGL-awt</artifactId>
<version>2.0.1-SNAPSHOT</version>
</dependency>
```