| 94 | } |
| 95 | |
| 96 | void insertPatchColumnsAtEnd() |
| 97 | { |
| 98 | UndoableCommand undo("patchInsertColumnsAtEnd"); |
| 99 | // true = insert, true = columns, false = end |
| 100 | GlobalSelectionSystem().foreachPatch([&] (IPatch& patch) { patch.insertRemove(true, true, false); }); |
| 101 | } |
| 102 | |
| 103 | void insertPatchColumnsAtBeginning() |
| 104 | { |
nothing calls this directly
no test coverage detected