From bd444fa547c8d927562b8d9fac44ec4c6f155824 Mon Sep 17 00:00:00 2001
From: dpen2000 <davidpendray@gmail.com>
Date: Thu, 29 May 2014 02:13:20 +0100
Subject: [PATCH] Fixes #1096 by ensuring progress is reset back to zero so
 render gets called correctly after ajax call to load patches completes

---
 app/views/editor/patches_view.coffee | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/views/editor/patches_view.coffee b/app/views/editor/patches_view.coffee
index 17aef667b..a75e1e36d 100644
--- a/app/views/editor/patches_view.coffee
+++ b/app/views/editor/patches_view.coffee
@@ -46,6 +46,7 @@ module.exports = class PatchesView extends CocoView
     @reloadPatches()
 
   reloadPatches: ->
+    @supermodel.resetProgress()
     @load()
     @render()