mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed empty file name
This commit is contained in:
parent
839d4d9298
commit
7483b6c7b2
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ private void openAsotiations()
|
|||
customRTB.Select(Convert.ToInt32(cc2), 0);
|
||||
}
|
||||
|
||||
currentFilename = Path.GetFileName(OpenFile.FileName);
|
||||
currentFilename = Path.GetFileName(args[1]);
|
||||
}
|
||||
|
||||
private void newToolStripMenuItem_Click_1(object sender, EventArgs e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue