From 9689e5cea7efd0055c701f2ecc456b46ba2a8938 Mon Sep 17 00:00:00 2001 From: Ashleigh Date: Sat, 14 Sep 2019 22:12:23 -0500 Subject: [PATCH] Added text notifying that password change may cause logout --- application/LaunchController.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application/LaunchController.cpp b/application/LaunchController.cpp index e39048f1..fe12890d 100644 --- a/application/LaunchController.cpp +++ b/application/LaunchController.cpp @@ -83,8 +83,7 @@ void LaunchController::login() // we loop until the user succeeds in logging in or gives up bool tryagain = true; // the failure. the default failure. - const QString needLoginAgain = tr("Your account is currently not logged in. Please enter " - "your password to log in again."); + const QString needLoginAgain = tr("Your account is currently not logged in. Please enter your password to log in again.

This could be caused by a password change."); QString failReason = needLoginAgain; while (tryagain)