Commit 5ed32776 by Lee Jaebin

全作業が表示時に全てを選択でプログレスバーが表示される問題修正

parent 8d0010b3
...@@ -1956,14 +1956,13 @@ public class OperationListActivity extends ABVUIActivity { ...@@ -1956,14 +1956,13 @@ public class OperationListActivity extends ABVUIActivity {
private void setOperationLocation(long type) { private void setOperationLocation(long type) {
Logger.d(TAG, "setOperationLocation type :" + type); Logger.d(TAG, "setOperationLocation type :" + type);
int localType = getABVUIDataCache().getOperationGroupMasterMode(); int localType = getABVUIDataCache().getOperationGroupMasterMode();
boolean loadFlg = localType != type;
// loadFlgがtrueの場合のみ、タイプを保存して画面を再作成する
if (localType != type) {
// typeの値をxmlに書き込み // typeの値をxmlに書き込み
getABVUIDataCache().setOperationGroupMasterMode((int) type); getABVUIDataCache().setOperationGroupMasterMode((int) type);
// プログレスバー // プログレスバー
showProgressPopup(); showProgressPopup();
// loadFlgがtrueの場合のみ、画面を再作成する
if (loadFlg) {
setOperationListView(); setOperationListView();
} }
......
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