Skip to content

Commit

Permalink
fix chart zoom problems
Browse files Browse the repository at this point in the history
  • Loading branch information
mayswind committed Jan 25, 2014
1 parent 8d5e765 commit edd61bf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions C3D.DataViewer/Controls/Point3DControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,17 @@ private void mnuShowResidual_Click(object sender, EventArgs e)
{
_showResidual = this.mnuShowResidual.Checked;
this.LoadData(false);

for (Int32 i = 0; i < 4; i++)
{
for (Int32 j = 0; j < 2; j++)
{
if (this._status[i].Scales[j] > 0)
{
this._status[i].Scales[j] = 0;
}
}
}
}

private void mnuShowMarker_Click(object sender, EventArgs e)
Expand Down

0 comments on commit edd61bf

Please sign in to comment.