diff options
| author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2026-01-06 20:12:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-06 20:12:51 +0200 |
| commit | 2ba9383d0d008dc44a062fd8566d3d6a171b0dd8 (patch) | |
| tree | f8dbb5b2e57bae497037768d418c71aded5cbacb /indra | |
| parent | 793acc7f57b01edd86fdbfba3981027ce9498888 (diff) | |
revert #4735 Remove the word "Viewer" from application shortcut
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 5 |
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" |
