Attempt to close each open sketch in preparation for quitting. @return false if canceled along the way
()
| 1790 | * @return false if canceled along the way |
| 1791 | */ |
| 1792 | protected boolean handleQuitEach() { |
| 1793 | // int index = 0; |
| 1794 | for (Editor editor : editors) { |
| 1795 | // if (editor.checkModified()) { |
| 1796 | // // Update to the new/final sketch path for this fella |
| 1797 | // storeSketchPath(editor, index); |
| 1798 | // index++; |
| 1799 | // |
| 1800 | // } else { |
| 1801 | // return false; |
| 1802 | // } |
| 1803 | if (!editor.checkModified()) { |
| 1804 | return false; |
| 1805 | } |
| 1806 | } |
| 1807 | return true; |
| 1808 | } |
| 1809 | |
| 1810 | |
| 1811 | public void handleRestart() { |
no test coverage detected