Resize cursor does not display P3D/P2D with Windows10 [Processing 3]

edited April 2016 in Using Processing

Hi all,

Long time user, first time poster on the forums - good to be on here finally! :)

I was moving a sketch to P3D recently and noticed something weird when surface.setResizable is enabled. When using P3D/P2D, your cursor does not switch to the usual resize arrow icon when its over the window border. Resize still works though, you just have to guess where to place your mouse when you want to resize your window. Seems to only happen on my Windows 10 machine, the resize cursor shows up as normal on OSX. Default renderer on Win10 does shows the resize cursor icon correctly.

I know its just a minor inconvenience, but I was wondering if there is a way to set the cursor so that it shows up properly when over the window border? Also, just in case someone else comes across the same problem, you have to click just outside the window to resize (I thought that resize was broken because I spent too long clicking on the wrong place haha)


void settings()
{
   size(500,500,P3D); 
}

void setup()
{
  surface.setResizable(true);
}

Cheers! ian

Tagged:

Answers

Sign In or Register to comment.