diff options
author | Callum Prentice <callum@lindenlab.com> | 2014-03-05 16:31:01 -0800 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2014-03-05 16:31:01 -0800 |
commit | 075bbb3887750ed0e441068960437d770b699062 (patch) | |
tree | d4de7de9ad58861c85d4980917cabde6c0646bc8 | |
parent | bf46ac548bb3db0c4412ac982fb41cbbd295bda7 (diff) |
WENG-1470 (Partial) Secondlife Login Screen Redesign - fixed unused combo box entries
-rwxr-xr-x | indra/newview/llpanellogin.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 437db62cac..0c392d669b 100755 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -688,16 +688,12 @@ void LLPanelLogin::onUpdateStartSLURL(const LLSLURL& new_start_slurl) break; case LLSLURL::HOME_LOCATION: - location_combo->setCurrentByIndex(1); // home location - break; - - case LLSLURL::LAST_LOCATION: - location_combo->setCurrentByIndex(0); // last location + //location_combo->setCurrentByIndex(0); // home location break; default: LL_WARNS("AppInit")<<"invalid login slurl, using home"<<LL_ENDL; - location_combo->setCurrentByIndex(1); // home location + //location_combo->setCurrentByIndex(0); // home location break; } } |