Skip to content

Commit

Permalink
link the swipe right for laps, as it was missing #87
Browse files Browse the repository at this point in the history
  • Loading branch information
roznet committed Mar 21, 2021
1 parent 16a453a commit bddc7b2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ConnectStats/src/GCActivityLapViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,12 @@ -(void)swipeLeft:(GCCellSimpleGraph*)cell{
[self.choices next];
[self.tableView reloadData];
}

-(void)swipeRight:(GCCellSimpleGraph *)cell{
[self.choices previous];
[self.tableView reloadData];
}

-(void)showMap{
GCMapViewController *detailViewController = [[GCMapViewController alloc] initWithNibName:nil bundle:nil];
// ...
Expand Down

0 comments on commit bddc7b2

Please sign in to comment.