Set the window (and dock, or whatever necessary) title.
(String title)
| 560 | |
| 561 | /** Set the window (and dock, or whatever necessary) title. */ |
| 562 | @Override |
| 563 | public void setTitle(String title) { |
| 564 | frame.setTitle(title); |
| 565 | // Workaround for apparent Java bug on OS X? |
| 566 | // https://github.com/processing/processing/issues/3472 |
| 567 | if (cursorVisible && |
| 568 | (PApplet.platform == PConstants.MACOSX) && |
| 569 | (cursorType != PConstants.ARROW)) { |
| 570 | hideCursor(); |
| 571 | showCursor(); |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | |
| 576 | /** Set true if we want to resize things (default is not resizable) */ |
nothing calls this directly
no test coverage detected