mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
SizeSuffix method was moved to own section
This commit is contained in:
parent
382164d73f
commit
f582da98c7
1 changed files with 1 additions and 3 deletions
|
|
@ -50,6 +50,7 @@ protected override void WndProc(ref Message m)
|
|||
base.WndProc(ref m);
|
||||
}
|
||||
|
||||
#region Methods
|
||||
static string SizeSuffix(long value)
|
||||
{
|
||||
if (value < 0) { return "-" + SizeSuffix(-value); }
|
||||
|
|
@ -65,7 +66,6 @@ static string SizeSuffix(long value)
|
|||
return string.Format("{0:n1} {1}", dValue, SizeSuffixes[i]);
|
||||
}
|
||||
|
||||
#region Methods
|
||||
private void DecryptAES()
|
||||
{
|
||||
EnterKeyForm enterKeyForm = new EnterKeyForm
|
||||
|
|
@ -1774,8 +1774,6 @@ private void VariablesMainMenu_Click(object sender, EventArgs e)
|
|||
Debug.WriteLine("EditorMenuStrip: " + contextMenu.Enabled);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue