From e4aff5b08a9e6ac4adb4c70515aa28e607a1b822 Mon Sep 17 00:00:00 2001
From: Lukas Matena <lukasmatena@seznam.cz>
Date: Tue, 29 May 2018 09:07:23 +0200
Subject: [PATCH] Feedrate on the first layer of the wipe tower properly set
 (bugfix)

---
 xs/src/libslic3r/GCode/WipeTowerPrusaMM.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xs/src/libslic3r/GCode/WipeTowerPrusaMM.cpp b/xs/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
index b414186be..9cc2a3063 100644
--- a/xs/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
+++ b/xs/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
@@ -197,7 +197,7 @@ public:
         do {
             ++i;
             if (i==4) i=0;
-            extrude(corners[i]);
+            extrude(corners[i], f);
         } while (i != index_of_closest);
         return (*this);
     }