#3436 Better handling in setting_get_control

master
Andrey Kleshchev 2025-01-20 22:09:20 +02:00 committed by Andrey Kleshchev
parent 74cdfcefa0
commit 75e01f894d
1 changed files with 2 additions and 2 deletions

View File

@ -764,9 +764,9 @@ LLPointer<LLControlVariable> setting_get_control(LLControlGroup& group, const st
LLPointer<LLControlVariable> cntrl_ptr = group.getControl(setting);
if (cntrl_ptr.isNull())
{
LLError::LLUserWarningMsg::showMissingFiles();
LL_ERRS() << "Unable to set up setting listener for " << setting
<< ". Please reinstall viewer from https ://secondlife.com/support/downloads/ and contact https://support.secondlife.com if issue persists after reinstall."
<< LL_ENDL;
<< "." << LL_ENDL;
}
return cntrl_ptr;
}