Changeset d4c19e5 in sasview for sansview/welcome_panel.py


Ignore:
Timestamp:
Aug 12, 2011 3:48:47 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
390742c
Parents:
38cfa7a
Message:

fixing setup_exe-ing of sansview app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/welcome_panel.py

    rfa597990 rd4c19e5  
    9595        ScrolledPanel.__init__(self, parent, **kwds) 
    9696        self.SetupScrolling() 
    97         image = os.path.join("images","SVwelcome.png") 
     97        path = os.getcwd() 
     98        import local_config 
     99        #icon_path = os.path.join(path, "images") 
     100        #print "PPP", icon_path,path 
     101        image = os.path.join(local_config._welcome_image) 
    98102        self.SetWindowVariant(variant = FONT_VARIANT) 
    99103        self.bitmap_logo = wx.StaticBitmap(self, -1, wx.Bitmap(image)) 
Note: See TracChangeset for help on using the changeset viewer.