From b85e2d777e0533f5c9b1f25bdece08c61422f887 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Thu, 2 Jul 2015 11:21:46 +0200 Subject: [PATCH] If we don't ask for a root password, allow going forward without it. CAL-248 #close Should be fixed, please test. --- src/modules/users/UsersPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/users/UsersPage.cpp b/src/modules/users/UsersPage.cpp index cb013748c..6f1ae2f29 100644 --- a/src/modules/users/UsersPage.cpp +++ b/src/modules/users/UsersPage.cpp @@ -88,7 +88,7 @@ UsersPage::isReady() return m_readyFullName && m_readyHostname && m_readyPassword && - m_readyRootPassword && + ( !m_showRootPassword || m_readyRootPassword ) && m_readyUsername; }