Skip to content

Commit

Permalink
bug fix con consecutive renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-garcia-alves committed Jul 1, 2023
1 parent f6f90d6 commit a92b86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Renamer.Front/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private void RenameEngine_NamingProcessed(object? sender, NamingProcessedEventAr
if (e.NamingResult.Success)
{
var listViewItem = this.listViewSelectedItems.Items.Find(e.NamingResult.OldName, false)[0];
listViewItem.Text = e.NamingResult.NewName;
listViewItem.Name = listViewItem.Text = e.NamingResult.NewName;
}

// logs
Expand Down

0 comments on commit a92b86b

Please sign in to comment.