From fb01a956228a5285eb805f0c60b9b48ceb095bc4 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Tue, 6 Aug 2013 09:54:26 -0400 Subject: [PATCH] Fix Tobi Genesis' issue of the console sitting over the login fields after a failed login when hiding login screens. --- indra/newview/llstartup.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index e80c6ca06..0b0a6650a 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3436,6 +3436,9 @@ void reset_login() gLoginMenuBarView->setEnabled( TRUE ); } + // Clear the console + if (gConsole) gConsole->clear(); + // Hide any other stuff LLFloaterMap::hideInstance(); }