Changeset 1b70098 in sasview


Ignore:
Timestamp:
Apr 13, 2009 8:00:45 AM (16 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:
2355e7d
Parents:
45ed4dad
Message:

generalize os.join for ball.ico

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/gui_manager.py

    r445f949 r1b70098  
    194194                    filemode='w')         
    195195         
    196         path = os.path.dirname(__file__) 
    197         ico_file = os.path.join(path,'images/ball.ico') 
     196        path_up = os.path.dirname(__file__) 
     197        path = ico_file = os.path.join(path_up,'images') 
     198        ico_file = os.path.join(path,'ball.ico') 
    198199        if os.path.isfile(ico_file): 
    199200            self.SetIcon(wx.Icon(ico_file, wx.BITMAP_TYPE_ICO)) 
    200201        else: 
    201             ico_file = os.path.join(os.getcwd(),'images/ball.ico') 
     202            ico_file = os.path.join(os.getcwd(),'ball.ico') 
    202203            if os.path.isfile(ico_file): 
    203204                self.SetIcon(wx.Icon(ico_file, wx.BITMAP_TYPE_ICO)) 
     
    391392                                          Name(p.window_name).Caption(p.window_caption). 
    392393                                          CenterPane(). 
    393                                           BestSize(wx.Size(600,600)). 
     394                                          BestSize(wx.Size(550,600)). 
    394395                                          MinSize(wx.Size(500,500)). 
    395396                                          Hide()) 
     
    407408                                  MinimizeButton(). 
    408409                                  Hide(). 
    409                                   BestSize(wx.Size(600,600)). 
     410                                  BestSize(wx.Size(550,600)). 
    410411                                  MinSize(wx.Size(500,500))) 
    411412                                
     
    464465                          #Hide(). 
    465466                          #Show(). 
    466                           BestSize(wx.Size(600,600)). 
     467                          BestSize(wx.Size(550,600)). 
    467468                          MinSize(wx.Size(500,500))) 
    468469                          #BestSize(wx.Size(400,400)). 
Note: See TracChangeset for help on using the changeset viewer.