Skip to content

Commit

Permalink
[Feature] Option to store log file at application directory instead i…
Browse files Browse the repository at this point in the history
…nto AppData (#371), version 1.2.9.11
  • Loading branch information
Hofknecht committed Jun 5, 2022
1 parent c614cdf commit 76cde23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion UserInterface/SettingsForm.cs
Expand Up @@ -820,7 +820,8 @@ private void ButtonOk_Click(object sender, EventArgs e)
RemoveSetFolderByWindowsContextMenu();
}

if (checkBoxSaveLogFileInApplicationDirectory.Checked)
Settings.Default.SaveLogFileInApplicationDirectory = checkBoxSaveLogFileInApplicationDirectory.Checked;
if (Settings.Default.SaveLogFileInApplicationDirectory)
{
try
{
Expand Down

0 comments on commit 76cde23

Please sign in to comment.