fixing warnings
This commit is contained in:
parent
80cc01d5da
commit
82c2f2ddf8
3 changed files with 2 additions and 5 deletions
|
|
@ -1082,7 +1082,7 @@ namespace MatterControl.Printing
|
|||
break;
|
||||
|
||||
case "109":
|
||||
// set heated platform temperature
|
||||
// wait for extruder temperature to be reached
|
||||
break;
|
||||
|
||||
case "114":
|
||||
|
|
|
|||
|
|
@ -47,7 +47,6 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
private int probePositionsBeingEditedIndex;
|
||||
|
||||
private List<double> samples = new List<double>();
|
||||
private int numberOfSamples;
|
||||
private AutoResetEvent autoResetEvent;
|
||||
private Vector3 feedRates;
|
||||
private Vector3 adjustedProbePosition;
|
||||
|
|
@ -79,7 +78,6 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
// Collect settings
|
||||
servoDeployCommand = printer.Settings.GetValue<double>(SettingsKey.z_servo_depolyed_angle);
|
||||
feedRates = printer.Settings.Helpers.ManualMovementSpeeds();
|
||||
numberOfSamples = printer.Settings.GetValue<int>(SettingsKey.z_probe_samples) - 1;
|
||||
|
||||
autoResetEvent = new AutoResetEvent(false);
|
||||
|
||||
|
|
@ -124,8 +122,6 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
var validProbePosition = PrintLevelingWizard.EnsureInPrintBounds(printer, goalProbePosition);
|
||||
var probePosition = new Vector3(validProbePosition, startProbeHeight);
|
||||
|
||||
//this.lastReportedPosition = printer.Connection.LastReportedPosition;
|
||||
|
||||
probePositionsWidget.ActiveProbeIndex = i;
|
||||
probePositionsWidget.Invalidate();
|
||||
|
||||
|
|
|
|||
|
|
@ -251,6 +251,7 @@ namespace MatterHackers.MatterControl
|
|||
{
|
||||
printer.Connection.TerminalLog.Clear();
|
||||
};
|
||||
|
||||
footerRow.AddChild(clearButton);
|
||||
|
||||
var exportButton = theme.CreateDialogButton("Export".Localize());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue