Increment rather than reassign X offset
This commit is contained in:
parent
e4c2fab814
commit
38cbfa8fb9
1 changed files with 1 additions and 1 deletions
|
|
@ -488,7 +488,7 @@ namespace MatterHackers.MatterControl
|
|||
nextButton.Click += (s, e) =>
|
||||
{
|
||||
var hotendOffset = printer.Settings.Helpers.ExtruderOffset(1);
|
||||
hotendOffset.X = double.Parse(activeOffset.Text);
|
||||
hotendOffset.X += double.Parse(activeOffset.Text);
|
||||
printer.Settings.Helpers.SetExtruderOffset(1, hotendOffset);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue