diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2017-12-07 14:03:47 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2017-12-07 14:03:47 -0500 |
commit | 0e73aec0a25091b010812b878676c24dfb140af4 (patch) | |
tree | 9ede360ea145a8efc729c537e7685a3e0dc6aa0f | |
parent | 12fbe63e657cb64cf5f7044acb4f999a5d1f2670 (diff) |
MAINT-8070: Tweak macOS embedded app names (flyover text) per Product
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 73631631e0..9fc113ff72 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -880,9 +880,9 @@ class DarwinManifest(ViewerManifest): # applications for the VMP and for the actual viewer, respectively. # These names, without the .app suffix, determine the flyover text for # their corresponding Dock icons. - toplevel_app, toplevel_icon = "Second Life.app", "secondlife.icns" - launcher_app, launcher_icon = "Launcher.app", "secondlife.icns" - viewer_app, viewer_icon = "Viewer.app", "secondlife.icns" + toplevel_app, toplevel_icon = "Second Life.app", "secondlife.icns" + launcher_app, launcher_icon = "Second Life Launcher.app", "secondlife.icns" + viewer_app, viewer_icon = "Second Life Viewer.app", "secondlife.icns" # copy over the build result (this is a no-op if run within the xcode script) self.path(os.path.join(self.args['configuration'], toplevel_app), dst="") |