diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-08-02 19:04:32 +0300 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-08-02 19:04:32 +0300 |
commit | b12201bf01caeef0f5a13951980be187ac3936c8 (patch) | |
tree | 2a61cedb308ef31aa99f607e8897b7a423f37cb7 | |
parent | 3b7da511179fd2e2e734a4f3137ac8813a5eebee (diff) |
EXT-6542 Localized the "none/none" in the About land floater.
This is an additional fix to the one made in rev. 6788ff579917.
Reviewed by Mike Antipov at https://codereview.productengine.com/secondlife/r/828/
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llpanellandmedia.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanellandmedia.cpp b/indra/newview/llpanellandmedia.cpp index e834e229cd..240139d714 100644 --- a/indra/newview/llpanellandmedia.cpp +++ b/indra/newview/llpanellandmedia.cpp @@ -151,7 +151,7 @@ void LLPanelLandMedia::refresh() mMediaDescEdit->setEnabled( can_change_media ); std::string mime_type = parcel->getMediaType(); - if (mime_type.empty()) + if (mime_type.empty() || mime_type == LLMIMETypes::getDefaultMimeType()) { mime_type = LLMIMETypes::getDefaultMimeTypeTranslation(); } |