MCPcopy Index your code
hub / github.com/processing/processing / setResizable

Method setResizable

core/src/processing/awt/PSurfaceAWT.java:577–584  ·  view source on GitHub ↗

Set true if we want to resize things (default is not resizable)

(boolean resizable)

Source from the content-addressed store, hash-verified

575
576 /** Set true if we want to resize things (default is not resizable) */
577 @Override
578 public void setResizable(boolean resizable) {
579 //this.resizable = resizable; // really only used for canvas
580
581 if (frame != null) {
582 frame.setResizable(resizable);
583 }
584 }
585
586
587 @Override

Callers

nothing calls this directly

Calls 1

setResizableMethod · 0.65

Tested by

no test coverage detected