Merge remote-tracking branch 'upstream/MK3_3.11.1' into mk311_sync
This commit is contained in:
commit
e37435b53f
87 changed files with 43199 additions and 39577 deletions
Firmware
|
@ -871,7 +871,10 @@ void CardReader::presort() {
|
|||
uint16_t counter = 0;
|
||||
uint16_t total = 0;
|
||||
for (uint16_t i = sortCountFiles/2; i > 0; i /= 2) total += sortCountFiles - i; //total runs for progress bar
|
||||
menu_progressbar_init(total, (runs == 0)?_i("Sorting files"):_i("Sorting folders"));
|
||||
menu_progressbar_init(
|
||||
total, (runs == 0)
|
||||
? _i("Sorting files") ////MSG_SORTING_FILES c=20
|
||||
: _i("Sorting folders")); ////MSG_SORTING_FOLDERS c=20
|
||||
|
||||
for (uint16_t gap = sortCountFiles/2; gap > 0; gap /= 2)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue