mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed bug with incorrect settings file path
This commit is contained in:
parent
dea6afad84
commit
db1334d437
1 changed files with 1 additions and 1 deletions
|
|
@ -723,7 +723,7 @@ private void MainForm_Shown(object sender, EventArgs e)
|
|||
richTextBox.SetInnerMargins(Convert.ToInt32(settings.editorPaddingLeft), 0, 0, 0);
|
||||
richTextBox.Modified = false;
|
||||
|
||||
if (!File.Exists("Crypto Notepad.settings"))
|
||||
if (!File.Exists(AppDomain.CurrentDomain.BaseDirectory + "Crypto Notepad.settings"))
|
||||
{
|
||||
using (new CenterWinDialog(this))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue