summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-09-22 16:58:00 -0700
committerRider Linden <rider@lindenlab.com>2015-09-22 16:58:00 -0700
commit1888142cab8ce7368c38d3f3ce745c46b70d423c (patch)
treefc1629ad490f0ca839c7a133e45477ed98c51188 /indra/newview
parenta01ad64c3e701de0586043aebf3229c5f5a4916a (diff)
Reuse old login panel...
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llpanellogin.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp
index bd23478694..8c5ad133f5 100755
--- a/indra/newview/llpanellogin.cpp
+++ b/indra/newview/llpanellogin.cpp
@@ -434,6 +434,12 @@ void LLPanelLogin::show(const LLRect &rect,
void (*callback)(S32 option, void* user_data),
void* callback_data)
{
+#if 1
+ if (!LLPanelLogin::sInstance)
+ {
+ new LLPanelLogin(rect, callback, callback_data);
+ }
+#else
// instance management
if (LLPanelLogin::sInstance)
{
@@ -445,6 +451,7 @@ void LLPanelLogin::show(const LLRect &rect,
}
new LLPanelLogin(rect, callback, callback_data);
+#endif
if( !gFocusMgr.getKeyboardFocus() )
{