From a9cc453015b6a7f20c38eb780cdf3a3e18c0dc59 Mon Sep 17 00:00:00 2001 From: Alexander Hurst <34695105+alexanderghurst@users.noreply.github.com> Date: Wed, 20 Dec 2017 15:09:16 -0500 Subject: [PATCH] cursor() sets the cursor visible, fixes #5330 --- core/src/processing/opengl/PSurfaceJOGL.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/processing/opengl/PSurfaceJOGL.java b/core/src/processing/opengl/PSurfaceJOGL.java index bde0f5230..dd7a1d767 100644 --- a/core/src/processing/opengl/PSurfaceJOGL.java +++ b/core/src/processing/opengl/PSurfaceJOGL.java @@ -1280,6 +1280,7 @@ public class PSurfaceJOGL implements PSurface { display.getEDTUtil().invoke(false, new Runnable() { @Override public void run() { + window.setPointerVisible(true); window.setPointerIcon(pi); } });