diff options
author | Loren Shih <seraph@lindenlab.com> | 2009-11-18 21:07:49 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2009-11-18 21:07:49 -0500 |
commit | 5b2c91598dffe7d5c9d676dd866f438d3adb9989 (patch) | |
tree | 1418842f7bc1eda4543fb54e333be97f991c1ae5 /indra/newview/llfloaterinventory.cpp | |
parent | 061b8d3aa659ad27cf6a5ff0ac3597036bfd8cf5 (diff) |
EXT-2636 : No "fetching inventory" or other indication that inventory is loading.
Diffstat (limited to 'indra/newview/llfloaterinventory.cpp')
-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) |