Changeset 3973


Ignore:
Timestamp:
May 12, 2019 10:08:22 PM (4 years ago)
Author:
toby
Message:

Load all fix; doc updates

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIctrlGUI.py

    r3965 r3973  
    25762576            txt.SetFont(font1)
    25772577            Sizer.Add(txt,0,wx.ALL|wx.EXPAND|WACV,0)
     2578            txtSize = txt.GetSize()[1]
    25782579        else:
    25792580            Sizer.Add(wx.StaticText(panel,label=title),0,WACV)
     2581            txtSize = 0
    25802582        columnsSizer = wx.BoxSizer(wx.HORIZONTAL)
    25812583        self.sel = []
     
    26202622        Size = [450,375]
    26212623        panel.SetSize(Size)
    2622         Size[0] += 25; Size[1]+= 25+txt.GetSize()[1]
     2624        Size[0] += 25; Size[1]+= 25+txtSize
    26232625        self.SetSize(Size)
    26242626       
  • trunk/GSASIIdataGUI.py

    r3967 r3973  
    52395239        self.SampleEdit.Append(G2G.wxID_SAMPLEFLAGCOPY,'Copy flags','Copy sample parameter refinement flags to other histograms')
    52405240        self.SampleEdit.Append(G2G.wxID_SAMPLE1VAL,'Set one value','Set one sample parameter value across multiple histograms')
    5241         self.SampleEdit.Append(G2G.wxID_ALLSAMPLELOAD,'Load all','Load sample parmameters over multiple histograms')
     5241        self.SampleEdit.Append(G2G.wxID_ALLSAMPLELOAD,'Load all','Load sample parameters over multiple histograms')
    52425242        self.SampleEdit.Append(G2G.wxID_RESCALEALL,'Rescale all','Rescale all data with selected range')
    52435243        self.PostfillDataMenu()
  • trunk/GSASIIfiles.py

    r3815 r3973  
    88########### SVN repository information ###################
    99'''
    10 *GSASIIfile: data (non-GUI) I/O routines*
    11 =========================================
     10*GSASIIfiles: data (non-GUI) I/O routines*
     11==========================================
    1212
    1313Module with miscellaneous routines for input and output from files.
     
    430430    The .par file has any number of columns separated by spaces.
    431431    The directory for the file must be specified in
    432     Config variable ``Column_Metadata_directory``.
     432    Config variable :var:`config_example.Column_Metadata_directory`.
    433433    As an index to the .par file a second "label file" must be specified with the
    434434    same file root name as the .par file but the extension must be .XXX_lbls (where
     
    480480    Note that several keywords, if defined in the Comments, will be found and
    481481    placed in the appropriate section of the powder histogram(s)'s Sample
    482     Parameters after an integration: ``Temperature``,``Pressure``,``Time``,
    483     ``FreePrm1``,``FreePrm2``,``FreePrm3``,``Omega``,``Chi``, and ``Phi``.
     482    Parameters after an integration: ``Temperature``, ``Pressure``, ``Time``,
     483    ``FreePrm1``, ``FreePrm2``, ``FreePrm3``, ``Omega``, ``Chi``, and ``Phi``.
    484484
    485485    After the Python code, supply a vertical bar (|) and then a list of one
  • trunk/config_example.py

    r3814 r3973  
    184184Column_Metadata_directory = None
    185185'''When specified and when images are read, GSAS-II will read metadata from a 1-ID
    186 style .par and a .EXT_lbls (EXT = image extension) or .lbls file. See :func:`GSASfiles.readColMetadata` for
     186style .par and a .EXT_lbls (EXT = image extension) or .lbls file. See :func:`GSASIIfile.readColMetadata` for
    187187information on how this is done.
    188188'''
Note: See TracChangeset for help on using the changeset viewer.