diff options
| -rw-r--r-- | indra/newview/llfolderview.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index 28b95e751e..50c3f9a734 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -931,14 +931,15 @@ void LLFolderView::draw()  		if (LLInventoryModelBackgroundFetch::instance().backgroundFetchActive() || mCompletedFilterGeneration < mFilter->getMinRequiredGeneration())  		{  			mStatusText = LLTrans::getString("Searching"); -			//font->renderUTF8(mStatusText, 0, 2, 1, sSearchStatusColor, LLFontGL::LEFT, LLFontGL::TOP, LLFontGL::NORMAL,  LLFontGL::NO_SHADOW, S32_MAX, S32_MAX, NULL, FALSE );  		}  		else  		{ -			LLStringUtil::format_map_t args; -			args["[SEARCH_TERM]"] = LLURI::escape(getFilter()->getFilterSubStringOrig()); -			mStatusText = LLTrans::getString(getFilter()->getEmptyLookupMessage(), args); -			//font->renderUTF8(mStatusText, 0, 2, 1, sSearchStatusColor, LLFontGL::LEFT, LLFontGL::TOP, LLFontGL::NORMAL,  LLFontGL::NO_SHADOW, S32_MAX, S32_MAX, NULL, FALSE ); +			if (getFilter()) +			{ +				LLStringUtil::format_map_t args; +				args["[SEARCH_TERM]"] = LLURI::escape(getFilter()->getFilterSubStringOrig()); +				mStatusText = LLTrans::getString(getFilter()->getEmptyLookupMessage(), args); +			}  		}  		mStatusTextBox->setValue(mStatusText);  		mStatusTextBox->setVisible( TRUE );  | 
