diff options
| author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-11-19 13:37:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 13:37:10 +0200 |
| commit | 260b6711ed14bb2c501c72e1d928cc2bee1b3b94 (patch) | |
| tree | f227ae74b6fe6d25b0539a06eb433e7f9a963c81 /indra | |
| parent | 3d650c4bb068ffc44c58284bcb450295a9e31e14 (diff) | |
#4735 Remove the word "Viewer" from application shortcut
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 109f00c9ae..94d234686a 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -259,10 +259,9 @@ class ViewerManifest(LLManifest): global CHANNEL_VENDOR_BASE channel_type=self.channel_type() if channel_type == 'release': - app_suffix='Viewer' + return CHANNEL_VENDOR_BASE else: - app_suffix=self.channel_variant() - return CHANNEL_VENDOR_BASE + ' ' + app_suffix + return CHANNEL_VENDOR_BASE + ' ' + self.channel_variant() def exec_name(self): return "SecondLifeViewer" |
