Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Fix download text view in tablet layout
Browse files Browse the repository at this point in the history
Upload info was displayed twice instead of upload then download
  • Loading branch information
daveeeh committed Nov 29, 2020
1 parent c0ceea6 commit 3811d44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4236,7 +4236,7 @@ public void onSuccess(TransferInfo transferInfo) {
}
// Tablets
else {
downloadSpeedTextView.setText(Character.toString('\u21C5') + " " + Common.calculateSize("" + downloadSpeedCount) + "/s " + '\u2022' + " " + Common.calculateSize(transferInfo.getUp_info_data()) + " (" + downloadCount + ") " + '\u2022' + " Free: " + freeSpaceOnDisk);
downloadSpeedTextView.setText(Character.toString('\u21C5') + " " + Common.calculateSize("" + downloadSpeedCount) + "/s " + '\u2022' + " " + Common.calculateSize(transferInfo.getDl_info_data()) + " (" + downloadCount + ") " + '\u2022' + " Free: " + freeSpaceOnDisk);
}
}

Expand Down

0 comments on commit 3811d44

Please sign in to comment.