Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Allow calibration file text boxes to be pasted into
  • Loading branch information
bparks13 committed Oct 29, 2025
commit 15913cbad5bcc9ecc342ad3855ff85b04eb195a3

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -454,5 +454,10 @@ private void UpdateTrackBarLocation(object sender, EventArgs e)
{
trackBarProbePosition.Value = (int)(ChannelConfiguration.GetRelativeVerticalPosition() * 100);
}

void TextBoxKeyPress(object sender, KeyPressEventArgs e)
{
CheckStatus();
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -641,5 +641,10 @@ private void UpdateTrackBarLocation(object sender, EventArgs e)
{
trackBarProbePosition.Value = (int)(ChannelConfiguration.GetRelativeVerticalPosition() * trackBarProbePosition.Maximum);
}

void TextBoxKeyPress(object sender, KeyPressEventArgs e)
{
CheckStatus();
}
}
}