Callback for the folder selector, used when user chooses a new sketchbook for Processing 3 @param folder the path to the new sketcbook
(File folder)
| 336 | * @param folder the path to the new sketcbook |
| 337 | */ |
| 338 | public void sketchbookCallback(File folder) { |
| 339 | if (folder != null) { |
| 340 | if (base != null) { |
| 341 | base.setSketchbookFolder(folder); |
| 342 | } else { |
| 343 | System.out.println("user selected " + folder); |
| 344 | } |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | |
| 349 | /** |
nothing calls this directly
no test coverage detected