Changeset 3142


Ignore:
Timestamp:
Oct 26, 2017 3:12:11 PM (6 years ago)
Author:
vondreele
Message:

fix AutoIntegrate? for 2.7 & 3.6 - wx.MULTIPLE --> wx.FD_MULTIPLE
remove spurious ReadMarCCDFrame import in G2img_1TIF.py

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIimgGUI.py

    r3141 r3142  
    31263126                if not pth: pth = '.'
    31273127                dlg = wx.FileDialog(parent, 'Read previous table or build new table by selecting image control files', pth,
    3128                     style=wx.FD_OPEN| wx.MULTIPLE,
     3128                    style=wx.FD_OPEN| wx.FD_MULTIPLE,
    31293129                    wildcard='Integration table (*.imtbl)|*.imtbl|image control files (.imctrl)|*.imctrl')
    31303130                dlg.CenterOnParent()
  • trunk/imports/G2img_1TIF.py

    r3141 r3142  
    8989    import struct as st
    9090    import array as ar
    91     import ReadMarCCDFrame as rmf
     91#    import ReadMarCCDFrame as rmf
    9292    image = None
    9393    File = open(filename,'rb')
  • trunk/scanCCD.py

    r3136 r3142  
    9393        'Any detector tif (*.tif;*.tiff)|*.tif;*.tiff|\
    9494        All files (*.*)|*.*',
    95         wx.FD_OPEN | wx.MULTIPLE)
     95        wx.FD_OPEN | wx.FD_MULTIPLE)
    9696        if self.dirname:
    9797            dlg.SetDirectory(self.dirname)
Note: See TracChangeset for help on using the changeset viewer.