Skip to content

Commit 3d0dbcc

Browse files
committed
Minor UI updates
Removed decimal point on file sizes. Reordered the tab indices for key creation.
1 parent d5f1a46 commit 3d0dbcc

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

WinFormsUI/Forms/CreateKeyPairForm.Designer.cs

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WinFormsUI/Forms/DashboardForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ private string FormatBytes(int bytes)
278278
for (i = 0; Math.Round(dblBytes / 1024) >= 1; i++)
279279
dblBytes /= 1024;
280280

281-
return $"{dblBytes:n1} {suffixes[i]}";
281+
return $"{(int)dblBytes} {suffixes[i]}";
282282
}
283283

284284
private void AddButton_MouseDown(object sender, MouseEventArgs e)

0 commit comments

Comments
 (0)