Disable archiving for now

This commit is contained in:
Niels Andriesse 2019-06-17 10:17:00 +10:00
parent 54ebe85f11
commit 2e9a002eb1
1 changed files with 3 additions and 1 deletions

View File

@ -1208,6 +1208,7 @@ typedef NS_ENUM(NSInteger, HomeViewControllerSection) {
[self tableViewCellTappedDelete:swipedIndexPath];
}];
/**
UITableViewRowAction *archiveAction;
if (self.homeViewMode == HomeViewMode_Inbox) {
archiveAction = [UITableViewRowAction
@ -1228,10 +1229,11 @@ typedef NS_ENUM(NSInteger, HomeViewControllerSection) {
[self archiveIndexPath:tappedIndexPath];
}];
}
*/
// The first action will be auto-performed for "very long swipes".
return @[
archiveAction,
/*archiveAction,*/
deleteAction,
];
}