Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Latest submodule #25

Merged
merged 2 commits into from
Apr 4, 2024
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
4 changes: 2 additions & 2 deletions src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private void ShowControl()

foreach (var dcsbiosControlInput in _dcsbiosControl.Inputs)
{
var inputInterface = dcsbiosControlInput.GetInputInterface(_dcsbiosControl.Identifier);
var inputInterface = dcsbiosControlInput.GetInputInterface();
switch (inputInterface.Interface)
{
case DCSBIOSInputType.FIXED_STEP:
Expand Down Expand Up @@ -652,7 +652,7 @@ private void TextBoxDataToSend_OnGotFocus(object sender, RoutedEventArgs e)

foreach (var dcsbiosInput in _dcsbiosControl.Inputs)
{
var inputInterface = dcsbiosInput.GetInputInterface(_dcsbiosControl.Identifier);
var inputInterface = dcsbiosInput.GetInputInterface();
switch (inputInterface.Interface)
{
case DCSBIOSInputType.FIXED_STEP:
Expand Down
Loading