Commit b862a2ec by Kim Jinsung

ベースシーン登録時のシーン登録失敗時、

再度リトライダイアログからCancelボタンでシーン画像選択画面非表示されない問題対応
parent 74774ac3
...@@ -450,7 +450,7 @@ public class DeviceImageListActivity extends ABVUIActivity { ...@@ -450,7 +450,7 @@ public class DeviceImageListActivity extends ABVUIActivity {
public void run() { public void run() {
closeProgressPopup(); closeProgressPopup();
//ベースシーンアップロード時、ベースシーン登録完了の場合、Cancelでシーン画像選択画面非表示 //ベースシーンアップロード時、ベースシーン登録完了の場合、Cancelでシーン画像選択画面非表示
if (mIsBaseSceneUpload && mIsBaseSceneUploadSuccess) { if (mIsBaseSceneUpload) {
AlertDialogUtil.showAlertDialog(DeviceImageListActivity.this, R.string.app_name, R.string.msg_image_select_send_fail_retry, new DialogInterface.OnClickListener() { AlertDialogUtil.showAlertDialog(DeviceImageListActivity.this, R.string.app_name, R.string.msg_image_select_send_fail_retry, new DialogInterface.OnClickListener() {
@Override @Override
public void onClick(DialogInterface dialog, int which) { //OKボタン public void onClick(DialogInterface dialog, int which) { //OKボタン
...@@ -461,7 +461,6 @@ public class DeviceImageListActivity extends ABVUIActivity { ...@@ -461,7 +461,6 @@ public class DeviceImageListActivity extends ABVUIActivity {
}, new DialogInterface.OnClickListener() { //Cancelボタン }, new DialogInterface.OnClickListener() { //Cancelボタン
@Override @Override
public void onClick(DialogInterface dialog, int which) { public void onClick(DialogInterface dialog, int which) {
activityClose(); activityClose();
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment