mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Updated UI drivers to make sure modal shutdown warning is shown when vacancy shutdown is triggered
This commit is contained in:
parent
d563a6224b
commit
6afe1729bf
4 changed files with 6 additions and 6 deletions
|
|
@ -50,7 +50,7 @@ namespace PepperDash.Essentials.Room.Behaviours
|
||||||
FeatureEventGroup.RetrieveAllEvents();
|
FeatureEventGroup.RetrieveAllEvents();
|
||||||
|
|
||||||
// Add to the global class for tracking
|
// Add to the global class for tracking
|
||||||
//Global.Scheduler.AddEventGroup(FeatureEventGroup);
|
Scheduler.AddEventGroup(FeatureEventGroup);
|
||||||
|
|
||||||
AddPostActivationAction(() =>
|
AddPostActivationAction(() =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -592,7 +592,7 @@ namespace PepperDash.Essentials
|
||||||
EndMeetingButtonSig.BoolValue = true;
|
EndMeetingButtonSig.BoolValue = true;
|
||||||
ShareButtonSig.BoolValue = false;
|
ShareButtonSig.BoolValue = false;
|
||||||
|
|
||||||
if (CurrentRoom.ShutdownType == eShutdownType.Manual)
|
if (CurrentRoom.ShutdownType == eShutdownType.Manual || CurrentRoom.ShutdownType == eShutdownType.Vacancy)
|
||||||
{
|
{
|
||||||
PowerDownModal = new ModalDialog(TriList);
|
PowerDownModal = new ModalDialog(TriList);
|
||||||
var message = string.Format("Meeting will end in {0} seconds", CurrentRoom.ShutdownPromptSeconds);
|
var message = string.Format("Meeting will end in {0} seconds", CurrentRoom.ShutdownPromptSeconds);
|
||||||
|
|
|
||||||
|
|
@ -763,7 +763,7 @@ namespace PepperDash.Essentials
|
||||||
var timer = CurrentRoom.ShutdownPromptTimer;
|
var timer = CurrentRoom.ShutdownPromptTimer;
|
||||||
SetActivityFooterFeedbacks();
|
SetActivityFooterFeedbacks();
|
||||||
|
|
||||||
if (CurrentRoom.ShutdownType == eShutdownType.Manual)
|
if (CurrentRoom.ShutdownType == eShutdownType.Manual || CurrentRoom.ShutdownType == eShutdownType.Vacancy)
|
||||||
{
|
{
|
||||||
PowerDownModal = new ModalDialog(TriList);
|
PowerDownModal = new ModalDialog(TriList);
|
||||||
var message = string.Format("Meeting will end in {0} seconds", CurrentRoom.ShutdownPromptSeconds);
|
var message = string.Format("Meeting will end in {0} seconds", CurrentRoom.ShutdownPromptSeconds);
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 03a1cef777fb8e57ddd88e9ab4bfdbc867a8769d
|
Subproject commit 5c2202723fd8d3d5b5a3d17e600c47f0e10b61c2
|
||||||
Loading…
Add table
Add a link
Reference in a new issue