Is this a bug? Presentation mode doesn't blank the rest of the screen when using surface.setSize().

edited April 2017 in Questions about Code
void setup() {

size(1000,1414);
surface.setResizable(true);
surface.setSize(500,707);

 }

This code when run in presentation mode will display a canvas in the top left of the screen, and not blank the rest of the screen. It displays like it should in regular "run". Why?

Sign In or Register to comment.