mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Corrects issues with order of operations so that InCallFeedback isn't null when dependent routines check it's state.
This commit is contained in:
parent
2fe1ac0e75
commit
f2e2166146
4 changed files with 83 additions and 70 deletions
|
|
@ -33,9 +33,9 @@ namespace PepperDash.Essentials.Core
|
|||
{
|
||||
Audio = 1,
|
||||
Video = 2,
|
||||
//AudioVideo = 4,
|
||||
UsbOutput = 4,
|
||||
UsbInput = 8
|
||||
AudioVideo = 4,
|
||||
UsbOutput = 8,
|
||||
UsbInput = 16
|
||||
}
|
||||
|
||||
public enum eRoutingPortConnectionType
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ namespace PepperDash.Essentials.Core
|
|||
public ushort Count
|
||||
{
|
||||
get { return SetNumberOfItemsSig.UShortValue; }
|
||||
set { SetNumberOfItemsSig.UShortValue = value; }
|
||||
set { SetNumberOfItemsSig.UShortValue = value; }
|
||||
}
|
||||
public ushort MaxDefinedItems { get; private set; }
|
||||
|
||||
|
|
@ -100,8 +100,9 @@ namespace PepperDash.Essentials.Core
|
|||
// Empty the list
|
||||
Items.Clear();
|
||||
// Clean up the SRL
|
||||
Count = 0;
|
||||
ScrollToItemSig.UShortValue = 1;
|
||||
Count = 1;
|
||||
|
||||
ScrollToItemSig.UShortValue = 1;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue