From db7de433d811dc33db3550b84e70dbc4faa37919 Mon Sep 17 00:00:00 2001 From: Beq Date: Sun, 27 Oct 2024 12:39:42 +0000 Subject: [PATCH] Make the password placeholder less confusing --- indra/newview/fspanellogin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/fspanellogin.cpp b/indra/newview/fspanellogin.cpp index 4ccc60194f..1c6d7ddf98 100644 --- a/indra/newview/fspanellogin.cpp +++ b/indra/newview/fspanellogin.cpp @@ -567,7 +567,7 @@ void FSPanelLogin::setFields(LLPointer credential, bool from_start // We don't actually use the password input field, // fill it with MAX_PASSWORD_SL characters so we get a // nice row of asterisks. - const std::string filler("123456789!123456"); + const std::string filler("Enter a password"); sInstance->getChild("password_edit")->setText(filler); sInstance->mPasswordLength = filler.length(); sInstance->updateLoginButtons();