diff --git a/thunar/thunar-application.c b/thunar/thunar-application.c
index 957c598e418329d6745d3605c94576367533c0a4..87d7ea6d67f950c0d9137016eb56c463f933fd53 100644
--- a/thunar/thunar-application.c
+++ b/thunar/thunar-application.c
@@ -1885,7 +1885,7 @@ thunar_application_copy_to (ThunarApplication *application,
   _thunar_return_if_fail (THUNAR_IS_APPLICATION (application));
 
   /* launch the operation */
-  thunar_application_launch (application, parent, "stock_folder-copy",
+  thunar_application_launch (application, parent, "edit-copy",
                              _("Copying files..."), thunar_io_jobs_copy_files,
                              source_file_list, target_file_list, new_files_closure);
 }
@@ -1926,7 +1926,7 @@ thunar_application_copy_into (ThunarApplication *application,
    g_free (display_name);
 
   /* collect the target files and launch the job */
-  thunar_application_collect_and_launch (application, parent, "stock_folder-copy",
+  thunar_application_collect_and_launch (application, parent, "edit-copy",
                                          title, thunar_io_jobs_copy_files,
                                          source_file_list, target_file,
                                          new_files_closure);
diff --git a/thunar/thunar-progress-dialog.c b/thunar/thunar-progress-dialog.c
index 673bc1aa65e83dbffa0ae03bbff8d77917bf1e34..7d227c2141db2315f7ae5d14e5763d6c4e6e6f65 100644
--- a/thunar/thunar-progress-dialog.c
+++ b/thunar/thunar-progress-dialog.c
@@ -111,7 +111,7 @@ thunar_progress_dialog_init (ThunarProgressDialog *dialog)
   gtk_widget_show (dialog->vbox);
 
   dialog->content_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
-  gtk_container_set_border_width (GTK_CONTAINER (dialog->content_box), 8);
+  gtk_container_set_border_width (GTK_CONTAINER (dialog->content_box), 12);
   gtk_container_add (GTK_CONTAINER (dialog->vbox), dialog->content_box);
   gtk_widget_show (dialog->content_box);
 }
@@ -157,7 +157,7 @@ thunar_progress_dialog_shown (ThunarProgressDialog *dialog)
   if (dialog->status_icon == NULL)
     {
 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
-      dialog->status_icon = gtk_status_icon_new_from_icon_name ("stock_folder-copy");
+      dialog->status_icon = gtk_status_icon_new_from_icon_name ("edit-copy");
 G_GNUC_END_IGNORE_DEPRECATIONS
 
       thunar_progress_dialog_update_status_icon (dialog);
diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index e30fb681f61b8abd916a770b01cae2d2f7446ea0..59d4260cb6fb8d9496467eb863d9909b7373b94e 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -189,7 +189,8 @@ thunar_progress_view_init (ThunarProgressView *view)
   gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);
   gtk_widget_show (hbox);
 
-  image = g_object_new (GTK_TYPE_IMAGE, "icon-size", GTK_ICON_SIZE_BUTTON, NULL);
+  image = g_object_new (GTK_TYPE_IMAGE, "icon-size", GTK_ICON_SIZE_DND, NULL);
+  gtk_image_set_pixel_size (GTK_IMAGE(image), 32);
   gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, TRUE, 0);
   exo_binding_new (G_OBJECT (view), "icon-name", G_OBJECT (image), "icon-name");
   gtk_widget_show (image);