Skip to content

Commit

Permalink
Fix: openMF#894: Progress Bar shown on top of Input Fields
Browse files Browse the repository at this point in the history
  • Loading branch information
etlhsu committed Oct 28, 2018
1 parent aa20e9f commit 9ca03bd
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ public void showBeneficiaryTemplate(BeneficiaryTemplate beneficiaryTemplate) {
tilAccountNumber.getEditText().setText(beneficiary.getAccountNumber());
tilOfficeName.getEditText().setText(beneficiary.getOfficeName());
}
llApplicationBeneficiary.setVisibility(View.VISIBLE);
}

/**
Expand Down Expand Up @@ -320,6 +321,8 @@ public void showError(String msg ) {
@Override
public void showProgress() {
showProgressBar();
llApplicationBeneficiary.setVisibility(View.GONE);

}

@Override
Expand Down

0 comments on commit 9ca03bd

Please sign in to comment.