Check for enough movement to show.
This commit is contained in:
parent
342c2f0a94
commit
9c89211265
1 changed files with 2 additions and 2 deletions
|
|
@ -275,8 +275,8 @@ namespace MatterHackers.MatterControl.PrinterControls
|
|||
internal void OffsetStreamChanged(object sender, EventArgs e)
|
||||
{
|
||||
Vector3 offset = PrinterConnectionAndCommunication.Instance.CurrentBabyStepsOffset;
|
||||
if (PrinterConnectionAndCommunication.Instance.PrinterIsPrinting || PrinterConnectionAndCommunication.Instance.PrinterIsPaused
|
||||
&& offset.LengthSquared != 0)
|
||||
if ((PrinterConnectionAndCommunication.Instance.PrinterIsPrinting || PrinterConnectionAndCommunication.Instance.PrinterIsPaused)
|
||||
&& offset.Length > .01)
|
||||
{
|
||||
|
||||
offsetStreamLabel.Text = ("{0} ({1:0.##}, {2:0.##}, {3:0.##})").FormatWith(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue