Added context text for creating folders

This commit is contained in:
MattNL
2023-05-01 04:51:22 -04:00
parent 552b9894c8
commit 8a0cfbf1c9

View File

@@ -1665,6 +1665,7 @@ namespace PckStudio
private void folderToolStripMenuItem_Click(object sender, EventArgs e)
{
RenamePrompt folderNamePrompt = new RenamePrompt("");
if(treeViewMain.SelectedNode is not null) folderNamePrompt.contextLabel.Text = $"New folder at the location of \"{treeViewMain.SelectedNode.FullPath}\"";
folderNamePrompt.OKButton.Text = "Add";
if (folderNamePrompt.ShowDialog() == DialogResult.OK)
{