Fix test regressions

This commit is contained in:
John Lewin 2018-10-10 12:15:30 -07:00
parent e05a563862
commit 478075fca0
3 changed files with 9 additions and 8 deletions

View file

@ -99,7 +99,8 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
contentRow.AddChild(printerModelContainer);
contentRow.AddChild(createPrinterNameContainer());
if (ApplicationController.GuestUserActive())
bool userIsLoggedIn = !ApplicationController.GuestUserActive?.Invoke() ?? false;
if (userIsLoggedIn)
{
var signInRow = new FlowLayoutWidget()
{