diff options
| -rw-r--r-- | indra/newview/llfloaterinventory.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/indra/newview/llfloaterinventory.cpp b/indra/newview/llfloaterinventory.cpp index 92778510e7..db38fc0fb3 100644 --- a/indra/newview/llfloaterinventory.cpp +++ b/indra/newview/llfloaterinventory.cpp @@ -64,10 +64,7 @@ BOOL LLFloaterInventory::postBuild()  void LLFloaterInventory::draw()  { - 	if (LLInventoryModel::isEverythingFetched()) -	{ -		updateTitle(); -	} +	updateTitle();  	LLFloater::draw();  } @@ -85,10 +82,14 @@ void LLFloaterInventory::updateTitle()  	{  		setTitle(getString("TitleFetching", string_args));  	} -	else +	else if (LLInventoryModel::isEverythingFetched())  	{  		setTitle(getString("TitleCompleted", string_args));  	} +	else +	{ +		setTitle(getString("Title")); +	}  }  void LLFloaterInventory::changed(U32 mask) | 
