mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Adds fake directory to MockVC with full features
This commit is contained in:
parent
3a99c3bb30
commit
2121456d50
3 changed files with 17 additions and 7 deletions
|
|
@ -927,7 +927,10 @@ namespace PepperDash.Essentials
|
|||
_CurrentRoom.CurrentSingleSourceChange += CurrentRoom_SourceInfoChange;
|
||||
RefreshSourceInfo();
|
||||
|
||||
if (_CurrentRoom.VideoCodec is IHasScheduleAwareness)
|
||||
{
|
||||
(_CurrentRoom.VideoCodec as IHasScheduleAwareness).CodecSchedule.MeetingsListHasChanged += CodecSchedule_MeetingsListHasChanged;
|
||||
}
|
||||
|
||||
CallSharingInfoVisibleFeedback = new BoolFeedback(() => _CurrentRoom.VideoCodec.SharingContentIsOnFeedback.BoolValue);
|
||||
_CurrentRoom.VideoCodec.SharingContentIsOnFeedback.OutputChange += SharingContentIsOnFeedback_OutputChange;
|
||||
|
|
|
|||
|
|
@ -1064,6 +1064,8 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||
/// Clears the Search keypad
|
||||
/// </summary>
|
||||
void SearchKeypadClear()
|
||||
{
|
||||
try
|
||||
{
|
||||
SearchStringBuilder.Remove(0, SearchStringBuilder.Length);
|
||||
SearchStringFeedback.FireUpdate();
|
||||
|
|
@ -1072,6 +1074,11 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||
if ((Codec as IHasDirectory).CurrentDirectoryResultIsNotDirectoryRoot.BoolValue)
|
||||
SetCurrentDirectoryToRoot();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Debug.Console(1, "SearchKeypadClear() blew up!: {0}", e);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Checks the enabled states of various elements around the keypad
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 713be9a794efcb48043ed784b214f11cf21e145c
|
||||
Subproject commit 1a61f2b4886bab143b71ce97cf29fe0e8ec0647e
|
||||
Loading…
Add table
Add a link
Reference in a new issue