Skip to content

Commit

Permalink
Microfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ijin82 committed Oct 11, 2021
1 parent 927f132 commit 228caaa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Waller/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ private void toggleTaskButtons()
private void btn_folder_Click(object sender, EventArgs e)
{
_ = folderBrowserDialog1.ShowDialog();
textBox_path.Text = folderBrowserDialog1.SelectedPath;
if (folderBrowserDialog1.SelectedPath != "") {
textBox_path.Text = folderBrowserDialog1.SelectedPath;
}
}

private void button_save_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 228caaa

Please sign in to comment.