mirror of
https://github.com/FirestormViewer/phoenix-firestorm.git
synced 2026-08-14 08:53:53 +00:00
Fix the icon paths for non-standard builds
This commit is contained in:
@@ -367,10 +367,14 @@ class ViewerManifest(LLManifest,FSViewerManifest):
|
||||
|
||||
def icon_path(self):
|
||||
# <FS:ND> Add -os for oss builds
|
||||
chan = self.channel_type()
|
||||
if chan in ['alpha', 'nightly','manual', 'profiling']:
|
||||
chan = 'test'
|
||||
|
||||
if self.fs_is_opensim():
|
||||
return "icons/" + self.channel_type() + "-os"
|
||||
return "icons/" + chan + "-os"
|
||||
# </FS:ND>
|
||||
return "icons/" + self.channel_type()
|
||||
return "icons/" + chan
|
||||
|
||||
def extract_names(self,src):
|
||||
"""Extract contributor names from source file, returns string"""
|
||||
|
||||
Reference in New Issue
Block a user