Commit b862a2ec by Kim Jinsung

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

再度リトライダイアログからCancelボタンでシーン画像選択画面非表示されない問題対応
parent 74774ac3
......@@ -450,7 +450,7 @@ public class DeviceImageListActivity extends ABVUIActivity {
public void run() {
closeProgressPopup();
//ベースシーンアップロード時、ベースシーン登録完了の場合、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() {
@Override
public void onClick(DialogInterface dialog, int which) { //OKボタン
......@@ -461,7 +461,6 @@ public class DeviceImageListActivity extends ABVUIActivity {
}, new DialogInterface.OnClickListener() { //Cancelボタン
@Override
public void onClick(DialogInterface dialog, int which) {
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