Skip to content

Commit

Permalink
poll time 100ms added (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlblom authored Nov 25, 2023
1 parent 6cb657a commit 8e3b7a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/client/DCSInsight/UserControls/UserControlAPI.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ protected override void BuildUI()
VerticalAlignment = VerticalAlignment.Center
};
ComboBoxPollTimes.DataContextChanged += ComboBoxPollTimes_OnDataContextChanged;
ComboBoxPollTimes.Items.Add(100);
ComboBoxPollTimes.Items.Add(500);
ComboBoxPollTimes.Items.Add(1000);
ComboBoxPollTimes.Items.Add(2000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ protected override void BuildUI()
VerticalAlignment = VerticalAlignment.Center
};
ComboBoxPollTimes.DataContextChanged += ComboBoxPollTimes_OnDataContextChanged;
ComboBoxPollTimes.Items.Add(100);
ComboBoxPollTimes.Items.Add(500);
ComboBoxPollTimes.Items.Add(1000);
ComboBoxPollTimes.Items.Add(2000);
Expand Down

0 comments on commit 8e3b7a0

Please sign in to comment.