diff options
| author | Merov Linden <merov@lindenlab.com> | 2014-08-25 10:02:13 -0700 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2014-08-25 10:02:13 -0700 | 
| commit | 85ec32c05e3474e55db142489f91e978df319951 (patch) | |
| tree | b47ce398cec76955f00761eed03787218abffbf1 /indra/newview/llinventorybridge.cpp | |
| parent | 27a6e55319017c93fbc8cd73e184019d120d6589 (diff) | |
DD-105 : WIP : Adding (updating...) suffix when SLM transaction in progress
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
| -rwxr-xr-x | indra/newview/llinventorybridge.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index d6ad9b50a4..f6a851e55f 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2087,6 +2087,11 @@ std::string LLFolderBridge::getLabelSuffix() const                  suffix += " (" +  LLTrans::getString("MarketplaceMax") + "=" + llformat("%d", stock_count) + ")";              }          } +        // Add updating suffix +        if (LLMarketplaceData::instance().isUpdating(getUUID())) +        { +            suffix += " (" +  LLTrans::getString("MarketplaceUpdating") + ")"; +        }          return LLInvFVBridge::getLabelSuffix() + suffix;  	}  	else | 
