Fixed call status header icon mode to black phone down. Fixed issue with keyboard not launching on keypad w/ favorites icon.

This commit is contained in:
Neil Dorin
2017-10-19 09:59:24 -06:00
parent b423d1cb58
commit 50a6bde4f2
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ namespace PepperDash.Essentials
public static string Gear = "Gear"; public static string Gear = "Gear";
public static string Lights = "Lights"; public static string Lights = "Lights";
public static string Help = "Help"; public static string Help = "Help";
public static string OnHook = "Phone Down"; public static string OnHook = "DND";
public static string Phone = "Phone"; public static string Phone = "Phone";
} }
} }

View File

@@ -766,7 +766,7 @@ namespace PepperDash.Essentials.UIDrivers.VC
/// </summary> /// </summary>
void RevealKeyboard() void RevealKeyboard()
{ {
if (VCControlsInterlock.CurrentJoin == UIBoolJoin.VCKeypadVisible && KeypadMode == eKeypadMode.Dial) if (VCControlsInterlock.CurrentJoin == UIBoolJoin.VCKeypadWithFavoritesVisible && KeypadMode == eKeypadMode.Dial)
{ {
var kb = Parent.Keyboard; var kb = Parent.Keyboard;
kb.KeyPress += new EventHandler<PepperDash.Essentials.Core.Touchpanels.Keyboards.KeyboardControllerPressEventArgs>(Keyboard_KeyPress); kb.KeyPress += new EventHandler<PepperDash.Essentials.Core.Touchpanels.Keyboards.KeyboardControllerPressEventArgs>(Keyboard_KeyPress);