Making sure inital e controls have - in retract
issue: MatterHackers/MatterControl#3571 retraction issue
This commit is contained in:
parent
eebdd230a6
commit
57448477ac
1 changed files with 2 additions and 0 deletions
|
|
@ -436,6 +436,7 @@ namespace MatterHackers.MatterControl
|
|||
if (extruderCount == 1)
|
||||
{
|
||||
ExtrudeButton eMinusControl = theme.CreateExtrudeButton(printer, "E-", printer.Settings.EFeedRate(0), 0);
|
||||
eMinusControl.MoveAmount = -eMinusControl.MoveAmount;
|
||||
eMinusControl.Margin = extrusionMargin;
|
||||
eMinusControl.ToolTipText = "Retract filament".Localize();
|
||||
eMinusButtonAndText.AddChild(eMinusControl);
|
||||
|
|
@ -446,6 +447,7 @@ namespace MatterHackers.MatterControl
|
|||
for (int i = 0; i < extruderCount; i++)
|
||||
{
|
||||
ExtrudeButton eMinusControl = theme.CreateExtrudeButton(printer, $"E{i + 1}-", printer.Settings.EFeedRate(0), i);
|
||||
eMinusControl.MoveAmount = -eMinusControl.MoveAmount;
|
||||
eMinusControl.ToolTipText = "Retract filament".Localize();
|
||||
eMinusControl.Margin = extrusionMargin;
|
||||
eMinusButtonAndText.AddChild(eMinusControl);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue