Commit 2aedb779 by Lee Jaebin

一括同期が1件の場合、プログレスバーが表示されない問題対応

parent 3388f245
...@@ -1715,7 +1715,12 @@ public class OperationListActivity extends ABVUIActivity { ...@@ -1715,7 +1715,12 @@ public class OperationListActivity extends ABVUIActivity {
batchSyncView.show(); batchSyncView.show();
// 一括同期処理 // 一括同期処理
batchSyncView.batchOperationSyncForCheckDonwload(); CommonExecutor.execute(new Runnable() {
@Override
public void run() {
batchSyncView.batchOperationSyncForCheckDonwload();
}
});
} }
/** /**
......
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