diff --git a/ChangeLog b/ChangeLog
index 243e6a00b115f8488df5e8b5014086443feb4a1f..31ddf491099076f73c536ff597a9cfaa26126b83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-02	Benedikt Meurer <benny@xfce.org>
+
+	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Prelight
+	  drop destination icons.
+
 2005-09-01	Benedikt Meurer <benny@xfce.org>
 
 	* thunar/thunar-computer-folder.c, thunar/thunar-desktop-view.c,
diff --git a/thunar/thunar-icon-renderer.c b/thunar/thunar-icon-renderer.c
index 42590c4a328b89e659fe4a7be95d87bd20dbcd5f..ebce4c85fa7b73ffd7bfc8d1a3341f31d916201f 100644
--- a/thunar/thunar-icon-renderer.c
+++ b/thunar/thunar-icon-renderer.c
@@ -343,6 +343,11 @@ thunar_icon_renderer_render (GtkCellRenderer     *renderer,
   if (G_UNLIKELY (icon == NULL))
     return;
 
+  /* pre-light the item if we're dragging about it */
+  if (G_UNLIKELY (icon_state == THUNAR_FILE_ICON_STATE_DROP))
+    flags |= GTK_CELL_RENDERER_PRELIT;
+
+  /* determine the real icon size */
   icon_area.width = gdk_pixbuf_get_width (icon);
   icon_area.height = gdk_pixbuf_get_height (icon);