Skip to content

Commit

Permalink
Fix labexp#476: Resume tracking btn change the state to stopped (labe…
Browse files Browse the repository at this point in the history
  • Loading branch information
miltonials authored Dec 7, 2024
1 parent bce871a commit 140538a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/java/net/osmtracker/activity/TrackManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,13 @@ public boolean onContextItemSelected(MenuItem item) {
// stop the active track
stopActiveTrack();
break;

case R.id.trackmgr_contextmenu_resume:
// let's activate the track and start the TrackLogger activity
setActiveTrack(contextMenuSelectedTrackid);
// Activate the selected track if it is different from the currently active one
// (or if no track is currently active)
if (currentTrackId != contextMenuSelectedTrackid) {
setActiveTrack(contextMenuSelectedTrackid);
}
// Start the TrackLogger activity to begin logging the selected track
i = new Intent(this, TrackLogger.class);
i.putExtra(TrackContentProvider.Schema.COL_TRACK_ID, contextMenuSelectedTrackid);
tryStartTrackLogger(i);
Expand Down

0 comments on commit 140538a

Please sign in to comment.