forked from organicmaps/organicmaps
[android] Reorders stop track recording dialog box buttons
Signed-off-by: hemanggs <hemangmanhas@gmail.com>
This commit is contained in:
parent
234dfb6d57
commit
645f17c441
1 changed files with 3 additions and 3 deletions
|
@ -2319,15 +2319,15 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
mAlertDialog = new StackedButtonsDialog.Builder(this)
|
||||
.setTitle(R.string.track_recording_alert_title)
|
||||
.setCancelable(false)
|
||||
// Negative/Positive/Neutral doesn't do not have the usual meaning here.
|
||||
.setPositiveButton(R.string.continue_recording, (dialog, which) -> {
|
||||
// Negative/Positive/Neutral do not have their usual meaning here.
|
||||
.setNegativeButton(R.string.continue_recording, (dialog, which) -> {
|
||||
mAlertDialog = null;
|
||||
})
|
||||
.setNeutralButton(R.string.stop_without_saving, (dialog, which) -> {
|
||||
stopTrackRecording();
|
||||
mAlertDialog = null;
|
||||
})
|
||||
.setNegativeButton(R.string.save, (dialog, which) -> {
|
||||
.setPositiveButton(R.string.save, (dialog, which) -> {
|
||||
saveAndStopTrackRecording();
|
||||
mAlertDialog = null;
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue