@@ -11,7 +11,7 @@ extension MainContentCoordinator {
1111 // MARK: - Row Operations
1212
1313 func addNewRow( selectedRowIndices: inout Set < Int > , editingCell: inout CellPosition ? ) {
14- guard !connection . safeModeLevel. blocksAllWrites,
14+ guard !safeModeLevel. blocksAllWrites,
1515 let tabIndex = tabManager. selectedTabIndex,
1616 tabIndex < tabManager. tabs. count else { return }
1717
@@ -31,7 +31,7 @@ extension MainContentCoordinator {
3131 }
3232
3333 func deleteSelectedRows( indices: Set < Int > , selectedRowIndices: inout Set < Int > ) {
34- guard !connection . safeModeLevel. blocksAllWrites,
34+ guard !safeModeLevel. blocksAllWrites,
3535 let tabIndex = tabManager. selectedTabIndex,
3636 tabIndex < tabManager. tabs. count,
3737 tabManager. tabs [ tabIndex] . isEditable,
@@ -53,7 +53,7 @@ extension MainContentCoordinator {
5353 }
5454
5555 func duplicateSelectedRow( index: Int , selectedRowIndices: inout Set < Int > , editingCell: inout CellPosition ? ) {
56- guard !connection . safeModeLevel. blocksAllWrites,
56+ guard !safeModeLevel. blocksAllWrites,
5757 let tabIndex = tabManager. selectedTabIndex,
5858 tabIndex < tabManager. tabs. count else { return }
5959
@@ -154,7 +154,7 @@ extension MainContentCoordinator {
154154 }
155155
156156 func pasteRows( selectedRowIndices: inout Set < Int > , editingCell: inout CellPosition ? ) {
157- guard !connection . safeModeLevel. blocksAllWrites,
157+ guard !safeModeLevel. blocksAllWrites,
158158 let index = tabManager. selectedTabIndex else { return }
159159
160160 var tab = tabManager. tabs [ index]
0 commit comments