summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2018-01-24 15:41:43 +0200
committermaxim_productengine <mnikolenko@productengine.com>2018-01-24 15:41:43 +0200
commitd251b3ade75e000a76946674a42ee0d0b3f216e7 (patch)
tree282d9d3884eb6fcccc778b2ecb335ff76cbd1323 /indra/newview
parenta148882da4c4172fdff8a81b8c2682f212d57144 (diff)
MAINT-8180 Help > Report Bug does not include viewer bitness
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index ea6842b62a..d48ff458d7 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3305,8 +3305,8 @@ std::string LLAppViewer::getShortViewerInfoString() const
std::ostringstream support;
LLSD info(getViewerInfo());
- support << LLTrans::getString("APP_NAME") << " " << info["VIEWER_VERSION_STR"].asString();
- support << " (" << info["CHANNEL"].asString() << ")";
+ support << info["CHANNEL"].asString() << " ";
+ support << info["VIEWER_VERSION_STR"].asString() << " (" << info["ADDRESS_SIZE"].asString() << "bit)";
if (info.has("BUILD_CONFIG"))
{
support << "\n" << "Build Configuration " << info["BUILD_CONFIG"].asString();