1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-06-30 23:46:35 +00:00

file: Don't skip the first file from operation progress monitoring

This commit is contained in:
Khalid Abu Shawarib 2024-01-11 23:15:12 +03:00
parent 9e5135057f
commit 20281558de

View File

@ -2101,7 +2101,7 @@ real_batch_rename (GList *files,
op->renamed_files = 0;
op->skipped_files = 0;
for (l1 = files->next; l1 != NULL; l1 = l1->next)
for (l1 = files; l1 != NULL; l1 = l1->next)
{
file = NAUTILUS_FILE (l1->data);