Opened 6 years ago
Last modified 6 years ago
#14917 new bug
Emptying the trash shows progress as a size instead of a count — at Initial Version
Reported by: | korli | Owned by: | nobody |
---|---|---|---|
Priority: | normal | Milestone: | Unscheduled |
Component: | Kits/libtracker.so | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
BStatusView::_FullSpeedString() is used for item counts, this means it shows 2KB for 2000 files to delete.
BString BStatusView::_FullSpeedString() { BString buffer; if (fBytesPerSecond != 0.0) { char sizeBuffer[128]; buffer.SetTo(B_TRANSLATE( "%SizeProcessed of %TotalSize, %BytesPerSecond/s")); buffer.ReplaceFirst("%SizeProcessed", string_for_size((double)fSizeProcessed, sizeBuffer, sizeof(sizeBuffer))); buffer.ReplaceFirst("%TotalSize", string_for_size((double)fTotalSize, sizeBuffer, sizeof(sizeBuffer))); buffer.ReplaceFirst("%BytesPerSecond", string_for_size(fBytesPerSecond, sizeBuffer, sizeof(sizeBuffer))); } return buffer; }
Note:
See TracTickets
for help on using tickets.
status window