aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-18 04:21:13 -0700
committerMcCabe Maxsted2011-04-18 04:21:13 -0700
commit7c188e3979c4c6c3223298c4ef6e222276e51117 (patch)
treefd11791db051667570a5c4c8fa38ab8334268d3a /linden
parentPotential fix for being unable to accept vivox licensing agreement, ported fr... (diff)
downloadmeta-impy-7c188e3979c4c6c3223298c4ef6e222276e51117.zip
meta-impy-7c188e3979c4c6c3223298c4ef6e222276e51117.tar.gz
meta-impy-7c188e3979c4c6c3223298c4ef6e222276e51117.tar.bz2
meta-impy-7c188e3979c4c6c3223298c4ef6e222276e51117.tar.xz
Fixed usernames default setting to '.' when logging into second life for the first time
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpanellogin.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanellogin.cpp b/linden/indra/newview/llpanellogin.cpp
index 1dff0cc..7b05794 100644
--- a/linden/indra/newview/llpanellogin.cpp
+++ b/linden/indra/newview/llpanellogin.cpp
@@ -878,10 +878,14 @@ void LLPanelLogin::loadLoginForm()
878 { 878 {
879 username_l->setText(firstname_s); 879 username_l->setText(firstname_s);
880 } 880 }
881 else 881 else if (!firstname_s.empty() && !lastname_s.empty())
882 { 882 {
883 username_l->setText(firstname_s+"."+lastname_s); 883 username_l->setText(firstname_s+"."+lastname_s);
884 } 884 }
885 else
886 {
887 username_l->clear();
888 }
885 } 889 }
886 else 890 else
887 { 891 {