| 108 | } |
| 109 | |
| 110 | void insertPatchRowsAtEnd() |
| 111 | { |
| 112 | UndoableCommand undo("patchInsertRowsAtEnd"); |
| 113 | // true = insert, false = rows, false = at end |
| 114 | GlobalSelectionSystem().foreachPatch([&] (IPatch& patch) { patch.insertRemove(true, false, false); }); |
| 115 | } |
| 116 | |
| 117 | void insertPatchRowsAtBeginning() |
| 118 | { |
nothing calls this directly
no test coverage detected