Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SteamCloudFileManager/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ void updateQuota()
if (storage == null) throw new InvalidOperationException("Not connected");
int totalBytes, availBytes;
storage.GetQuota(out totalBytes, out availBytes);
quotaLabel.Text = string.Format("{0}/{1} bytes used", totalBytes - availBytes, totalBytes);
var numFiles = remoteListView.Items.Count;
quotaLabel.Text = string.Format("{2} files, {0}/{1} bytes used", totalBytes - availBytes, totalBytes, numFiles);
}

private void downloadButton_Click(object sender, EventArgs e)
Expand Down