From c127a8b8cc8e9322183f8671a4e6dabee264b506 Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> Date: Fri, 8 May 2026 01:05:49 +0300 Subject: #5774 Crash on getCurrentNavUrl --- indra/newview/llpanellogin.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 7457f1c301..15cc8b421c 100644 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -913,10 +913,17 @@ void LLPanelLogin::loadLoginPage() gViewerWindow->setMenuBackgroundColor(false, !LLGridManager::getInstance()->isInProductionGrid()); - if (sInstance->mWebBrowser->getCurrentNavUrl() != login_uri.asString()) + if (sInstance->mWebBrowser) { - LL_DEBUGS("AppInit") << "loading: " << login_uri << LL_ENDL; - sInstance->mWebBrowser->navigateTo(login_uri.asString(), "text/html"); + if (sInstance->mWebBrowser->getCurrentNavUrl() != login_uri.asString()) + { + LL_DEBUGS("AppInit") << "loading: " << login_uri << LL_ENDL; + sInstance->mWebBrowser->navigateTo(login_uri.asString(), "text/html"); + } + } + else + { + LL_WARNS("AppInit") << "No web browser control for login panel" << LL_ENDL; } } -- cgit v1.3 From 115686ca0f962da9ec5dbcdbe54a4cb6c86302bb Mon Sep 17 00:00:00 2001 From: Maxim Nikolenko Date: Fri, 8 May 2026 18:55:05 +0300 Subject: #5768 fix llDialog text overflowing --- indra/newview/lltoastnotifypanel.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp index 8a7095f8ca..0c4a9c81c2 100644 --- a/indra/newview/lltoastnotifypanel.cpp +++ b/indra/newview/lltoastnotifypanel.cpp @@ -380,8 +380,6 @@ void LLToastNotifyPanel::init( LLRect rect, bool show_images ) button_panel_width = min_width_required; S32 width_increase = button_panel_width - mControlPanel->getRect().getWidth(); reshape(getRect().getWidth() + width_increase, getRect().getHeight()); - mInfoPanel->reshape(mInfoPanel->getRect().getWidth() + width_increase, mInfoPanel->getRect().getHeight()); - mTextBox->reshape(mTextBox->getRect().getWidth() + width_increase, mTextBox->getRect().getHeight()); } } //try get an average h_pad to spread out buttons -- cgit v1.3