Skip to content

Commit

Permalink
Added support for Folder Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsakharov committed Mar 21, 2024
1 parent 94d7670 commit 2ecc341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Prowl.Editor/EditorWindows/AssetBrowserWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private void RenderFileSystemEntry(FileSystemInfo entry)
EditorGui.Notify("A directory with the same name already exists.");
else
{
EditorGui.Notify("Renaming directories is not yet implemented.");
(entry as DirectoryInfo).MoveTo(newPath);
}
RenamingEntry = null;
}
Expand Down

0 comments on commit 2ecc341

Please sign in to comment.