Changeset 968f72d in sasview


Ignore:
Timestamp:
Mar 26, 2013 3:09:59 PM (11 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:
3b148c3
Parents:
98b12205
Message:

GENSANS: set all Gen files as default in fileDialog.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/gen_scatter_panel.py

    r2d8018f r968f72d  
    465465        if location == None: 
    466466            location = os.getcwd() 
    467          
     467 
     468        exts = "*" + self.omfreader.ext[0] 
     469        exts += ", *" + self.sldreader.ext[0] 
     470        exts += ", *" + self.pdbreader.ext[0] 
     471        all_type = "All GEN files (%s, %s) | %s"% (exts.upper(), exts.lower(),  
     472                                               exts.lower().replace(',', ';'))         
     473        wildcard = [all_type] 
    468474        omf_type = self.omfreader.type 
    469475        sld_type = self.sldreader.type 
    470476        pdb_type = self.pdbreader.type 
    471         wildcard = [] 
     477 
    472478        for type in sld_type: 
    473479            wildcard.append(type) 
  • sanscalculator/src/sans/calculator/sans_gen.py

    r2d8018f r968f72d  
    641641    ## Wildcards 
    642642    type = ["sld files (*.SLD, *.sld)|*.sld", 
    643             "txt files (*.TXT, *.txt)|*.txt"] 
     643            "txt files (*.TXT, *.txt)|*.txt", 
     644            "all files (*.*)|*.*"] 
    644645    ## List of allowed extensions 
    645     ext = ['.txt', '.TXT', '.sld', 'SLD', '.*'] 
     646    ext = ['.sld', '.SLD', '.txt', '.TXT', '.*'] 
    646647     
    647648    def read(self, path): 
Note: See TracChangeset for help on using the changeset viewer.