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;
|
_CurrentRoom.CurrentSingleSourceChange += CurrentRoom_SourceInfoChange;
|
||||||
RefreshSourceInfo();
|
RefreshSourceInfo();
|
||||||
|
|
||||||
(_CurrentRoom.VideoCodec as IHasScheduleAwareness).CodecSchedule.MeetingsListHasChanged += CodecSchedule_MeetingsListHasChanged;
|
if (_CurrentRoom.VideoCodec is IHasScheduleAwareness)
|
||||||
|
{
|
||||||
|
(_CurrentRoom.VideoCodec as IHasScheduleAwareness).CodecSchedule.MeetingsListHasChanged += CodecSchedule_MeetingsListHasChanged;
|
||||||
|
}
|
||||||
|
|
||||||
CallSharingInfoVisibleFeedback = new BoolFeedback(() => _CurrentRoom.VideoCodec.SharingContentIsOnFeedback.BoolValue);
|
CallSharingInfoVisibleFeedback = new BoolFeedback(() => _CurrentRoom.VideoCodec.SharingContentIsOnFeedback.BoolValue);
|
||||||
_CurrentRoom.VideoCodec.SharingContentIsOnFeedback.OutputChange += SharingContentIsOnFeedback_OutputChange;
|
_CurrentRoom.VideoCodec.SharingContentIsOnFeedback.OutputChange += SharingContentIsOnFeedback_OutputChange;
|
||||||
|
|
|
||||||
|
|
@ -1065,12 +1065,19 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
||||||
/// </summary>
|
/// </summary>
|
||||||
void SearchKeypadClear()
|
void SearchKeypadClear()
|
||||||
{
|
{
|
||||||
SearchStringBuilder.Remove(0, SearchStringBuilder.Length);
|
try
|
||||||
SearchStringFeedback.FireUpdate();
|
{
|
||||||
SearchStringKeypadCheckEnables();
|
SearchStringBuilder.Remove(0, SearchStringBuilder.Length);
|
||||||
|
SearchStringFeedback.FireUpdate();
|
||||||
|
SearchStringKeypadCheckEnables();
|
||||||
|
|
||||||
if((Codec as IHasDirectory).CurrentDirectoryResultIsNotDirectoryRoot.BoolValue)
|
if ((Codec as IHasDirectory).CurrentDirectoryResultIsNotDirectoryRoot.BoolValue)
|
||||||
SetCurrentDirectoryToRoot();
|
SetCurrentDirectoryToRoot();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Debug.Console(1, "SearchKeypadClear() blew up!: {0}", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 713be9a794efcb48043ed784b214f11cf21e145c
|
Subproject commit 1a61f2b4886bab143b71ce97cf29fe0e8ec0647e
|
||||||
Loading…
Add table
Add a link
Reference in a new issue