Changeset 1782 for trunk/GSASIIpwdGUI.py


Ignore:
Timestamp:
Apr 8, 2015 11:42:52 AM (8 years ago)
Author:
vondreele
Message:

fix display of fixed wavelength selection
show no. user rejected refl. in lst file after least squares
improve color display for Refl. Lists
skip user rejected reflections in single crystal cif output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpwdGUI.py

    r1781 r1782  
    13431343                    if 'Source' not in data: data['Source'] = ['CuKa','?']
    13441344                    choice = ['TiKa','CrKa','FeKa','CoKa','CuKa','MoKa','AgKa']
    1345                     lamPick = wx.ComboBox(G2frame.dataDisplay,value=data['Source'][0],choices=choice,style=wx.CB_READONLY|wx.CB_DROPDOWN)
     1345                    lamPick = wx.ComboBox(G2frame.dataDisplay,value=data['Source'][1],choices=choice,style=wx.CB_READONLY|wx.CB_DROPDOWN)
    13461346                    lamPick.Bind(wx.EVT_COMBOBOX, OnLamPick)
    13471347                    waveSizer.Add(lamPick,0)
     
    29542954        for row in rowList:
    29552955            data[1]['RefList'][row][3+im] *= -1 #toggles mul & -mul
     2956            if data[1]['RefList'][row][3+im] < 0:
     2957                G2frame.refTable[phaseName].SetCellBackgroundColour(row,3+im,wx.RED)
     2958            else:
     2959                G2frame.refTable[phaseName].SetCellBackgroundColour(row,3+im,wx.WHITE)
     2960        G2frame.refTable[phaseName].ClearSelection()
    29562961        ShowReflTable(phaseName)
    29572962       
Note: See TracChangeset for help on using the changeset viewer.