[android] Reorders stop track recording dialog box buttons

Signed-off-by: hemanggs <hemangmanhas@gmail.com>
This commit is contained in:
SYCE 2025-02-23 00:51:55 +05:30 committed by Konstantin Pastbin
parent 234dfb6d57
commit 645f17c441

View file

@ -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;
})