Skip to content

Commit

Permalink
"select folder" is probably less confusing than "current folder"
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbradsmith committed Oct 14, 2024
1 parent 2dd068d commit 82ed4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BinxelviewForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ private void setDirectoryPresetMenuItem_Click(object sender, EventArgs e)
d.ValidateNames = false; // avoid validation that will reject folders
d.CheckFileExists = false; // folder is not a file
d.CheckPathExists = true; // folder is a valid path
d.FileName = " current folder "; // pre-filling this acts like a selected file in the current folder if not changed by the user
d.FileName = " select folder "; // pre-filling this acts like a selected file in the current folder if not changed by the user
if (d.ShowDialog() == DialogResult.OK)
{
preset_dir = Path.GetDirectoryName(d.FileName);
Expand Down

0 comments on commit 82ed4ac

Please sign in to comment.