Opened 5 years ago

Last modified 5 years ago

#14917 new bug

Emptying the trash shows progress as a size instead of a count — at Version 1

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 (last modified by korli)

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;
}

status window

Change History (2)

by korli, 5 years ago

Attachment: screenshot51.png added

status window

comment:1 by korli, 5 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.