Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #476: Resume tracking btn change the state to stopped #477

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading