|
@@ -86,7 +86,10 @@ class GRASSStartup(wx.Frame):
|
|
|
#
|
|
|
# image
|
|
|
try:
|
|
|
- name = os.path.join(globalvar.ETCDIR, "gui", "images", "startup_banner.png")
|
|
|
+ if os.gentenv('ISISROOT'):
|
|
|
+ name = os.path.join(globalvar.ETCDIR, "gui", "images", "startup_banner_isis.png")
|
|
|
+ else:
|
|
|
+ name = os.path.join(globalvar.ETCDIR, "gui", "images", "startup_banner.png")
|
|
|
self.hbitmap = wx.StaticBitmap(self.panel, wx.ID_ANY,
|
|
|
wx.Bitmap(name = name,
|
|
|
type = wx.BITMAP_TYPE_PNG))
|