Skip to content

Commit 2150874

Browse files
committed
Fix merge errors
1 parent a1838f4 commit 2150874

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

OpenEphys.Onix1.Design/NeuropixelsV1ProbeConfigurationDialog.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ public NeuropixelsV1ProbeConfigurationDialog(IConfigureNeuropixelsV1 configureNo
8888
checkBoxSpikeFilter.Checked = configureNode.ProbeConfiguration.SpikeFilter;
8989
checkBoxSpikeFilter.CheckedChanged += SpikeFilterIndexChanged;
9090

91-
checkBoxInvertPolarity.Checked = ProbeConfiguration.InvertPolarity;
91+
checkBoxInvertPolarity.Checked = configureNode.ProbeConfiguration.InvertPolarity;
9292
checkBoxInvertPolarity.CheckedChanged += InvertPolarityIndexChanged;
9393

94-
textBoxAdcCalibrationFile.Text = ProbeConfiguration.AdcCalibrationFileName;
94+
textBoxAdcCalibrationFile.Text = configureNode.ProbeConfiguration.AdcCalibrationFileName;
9595
textBoxAdcCalibrationFile.TextChanged += (sender, e) => ProbeConfiguration.AdcCalibrationFileName = ((TextBox)sender).Text;
9696

97-
textBoxGainCalibrationFile.Text = ProbeConfiguration.GainCalibrationFileName;
97+
textBoxGainCalibrationFile.Text = configureNode.ProbeConfiguration.GainCalibrationFileName;
9898
textBoxGainCalibrationFile.TextChanged += (sender, e) => ProbeConfiguration.GainCalibrationFileName = ((TextBox)sender).Text;
9999

100100
comboBoxChannelPresets.DataSource = Enum.GetValues(typeof(ChannelPreset));

OpenEphys.Onix1.Design/NeuropixelsV2eProbeConfigurationDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void TextBoxKeyPress(object sender, KeyPressEventArgs e)
270270
CheckStatus();
271271
}
272272

273-
internal void UpdateControls(NeuropixelsV2QuadShankProbeConfiguration configuration, string calibrationFile, bool invertPolarity)
273+
internal void UpdateControls(NeuropixelsV2ProbeConfiguration configuration, string calibrationFile, bool invertPolarity)
274274
{
275275
comboBoxReference.SelectedItem = configuration.Reference;
276276
checkBoxInvertPolarity.Checked = invertPolarity;

0 commit comments

Comments
 (0)