summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Nikolenko <maximnproductengine@lindenlab.com>2026-01-06 20:12:51 +0200
committerGitHub <noreply@github.com>2026-01-06 20:12:51 +0200
commit2ba9383d0d008dc44a062fd8566d3d6a171b0dd8 (patch)
treef8dbb5b2e57bae497037768d418c71aded5cbacb
parent793acc7f57b01edd86fdbfba3981027ce9498888 (diff)
revert #4735 Remove the word "Viewer" from application shortcut
-rwxr-xr-xindra/newview/viewer_manifest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 94d234686a..109f00c9ae 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -259,9 +259,10 @@ class ViewerManifest(LLManifest):
global CHANNEL_VENDOR_BASE
channel_type=self.channel_type()
if channel_type == 'release':
- return CHANNEL_VENDOR_BASE
+ app_suffix='Viewer'
else:
- return CHANNEL_VENDOR_BASE + ' ' + self.channel_variant()
+ app_suffix=self.channel_variant()
+ return CHANNEL_VENDOR_BASE + ' ' + app_suffix
def exec_name(self):
return "SecondLifeViewer"