Skip to content

Commit

Permalink
[BUG] Fix fast renames causes duplicated item (#497), version 1.3.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofknecht committed Aug 25, 2023
1 parent 9bc8847 commit f4290f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions Business/Menus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1360,14 +1360,12 @@ private void RenameItem(RenamedEventArgs e)
if (rowData.Path.StartsWith($"{e.OldFullPath}"))
{
string path = rowData.Path.Replace(e.OldFullPath, e.FullPath);
FileAttributes attr = File.GetAttributes(path);
bool isFolder = (attr & FileAttributes.Directory) == FileAttributes.Directory;
if (isFolder)
if (rowData.IsFolder)
{
path = Path.GetDirectoryName(path);
}

RowData rowDataRenamed = new(isFolder, rowData.IsAddionalItem, false, 0, path);
RowData rowDataRenamed = new(rowData.IsFolder, rowData.IsAddionalItem, false, 0, path);
if (FolderOptions.IsHidden(rowDataRenamed))
{
continue;
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.2.6")]
[assembly: AssemblyFileVersion("1.3.2.6")]
[assembly: AssemblyVersion("1.3.2.7")]
[assembly: AssemblyFileVersion("1.3.2.7")]

0 comments on commit f4290f4

Please sign in to comment.