From 8a3fb2ac00c23be7d66649046f120fcd83889406 Mon Sep 17 00:00:00 2001 From: Bryan Mayland Date: Thu, 19 Mar 2015 09:28:23 -0400 Subject: [PATCH] Fix inability to set printer profile extruder feedrate from settings UI --- src/octoprint/static/js/app/viewmodels/printerprofiles.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/octoprint/static/js/app/viewmodels/printerprofiles.js b/src/octoprint/static/js/app/viewmodels/printerprofiles.js index 955f790e..516c207b 100644 --- a/src/octoprint/static/js/app/viewmodels/printerprofiles.js +++ b/src/octoprint/static/js/app/viewmodels/printerprofiles.js @@ -368,6 +368,10 @@ $(function() { z: { speed: parseInt(self.editorAxisZSpeed()), inverted: self.editorAxisZInverted() + }, + e: { + speed: parseInt(self.editorAxisESpeed()), + inverted: self.editorAxisEInverted() } } }; @@ -398,4 +402,4 @@ $(function() { [], [] ]); -}); \ No newline at end of file +});