diff --git a/ChangeLog b/ChangeLog
index 75f1cebaac2a4a69feee35c71d037f1e3909779a..52f9ec9aa1b0b258046fa68c163cfa660a4348ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-15	Benedikt Meurer <benny@xfce.org>
+
+	* FAQ, thunar/thunar-icon-view.c: Add mouse gesture for "Reload" as
+	  "move mouse down". The mouse gesture can still be canceled by placing
+	  the cursor back to its initial position (+/- 40px).
+
 2006-02-15	Benedikt Meurer <benny@xfce.org>
 
 	* THANKS, thunar-uca/thunar-uca-editor.c: Apply patch provided by
diff --git a/FAQ b/FAQ
index 93c79aba0a9626ec7936d726fe7331968187372e..015adfb9c443524e2f5509dd0939e4144fef41d1 100644
--- a/FAQ
+++ b/FAQ
@@ -62,5 +62,5 @@ appropriate answers to these questions.
    * Left  - opens the previous visited folder
    * Up    - opens the parent folder
    * Right - opens the next visited folder
-   * Down  - cancels the gesture action
+   * Down  - reload the current folder
 
diff --git a/thunar/thunar-icon-view.c b/thunar/thunar-icon-view.c
index 74e6df17aedb4973492b41711b9e462ef1ffd059..e052e15b9acd3b5c1cbb5bbdf17d0b53d898613e 100644
--- a/thunar/thunar-icon-view.c
+++ b/thunar/thunar-icon-view.c
@@ -465,6 +465,11 @@ thunar_icon_view_gesture_action (ThunarIconView *icon_view)
     {
       return gtk_ui_manager_get_action (THUNAR_STANDARD_VIEW (icon_view)->ui_manager, "/main-menu/go-menu/forward");
     }
+  else if (icon_view->gesture_current_y - icon_view->gesture_start_y > 40
+      && ABS (icon_view->gesture_start_x - icon_view->gesture_current_x) < 40)
+    {
+      return gtk_ui_manager_get_action (THUNAR_STANDARD_VIEW (icon_view)->ui_manager, "/main-menu/view-menu/reload");
+    }
 
   return NULL;
 }