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

Commit

Permalink
Merge pull request #255 from daveeeh/downloadtextview
Browse files Browse the repository at this point in the history
Fix download text view in tablet layout
  • Loading branch information
lgallard authored Dec 8, 2020
2 parents c0ceea6 + 3811d44 commit 48faf6b
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 48faf6b

Please sign in to comment.