Changeset 4551 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
Aug 20, 2020 4:24:29 PM (3 years ago)
Author:
toby
Message:

fix name wipe out bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r4550 r4551  
    32573257                            choice.append(str(atomData[r][c]))
    32583258                    choice.sort()
    3259                     dlg = wx.SingleChoiceDialog(G2frame,'Select','Name',choice)
     3259                    dlg = wx.SingleChoiceDialog(G2frame,'Select atom(s) by name',
     3260                                            'Name Selection',choice)
    32603261                    if dlg.ShowModal() == wx.ID_OK:
    32613262                        sel = dlg.GetSelection()
     
    32663267                            if parms == atomData[row][c]:
    32673268                                Atoms.SelectRow(row,True)
    3268                     dlg.Destroy()
     3269                        dlg.Destroy()
     3270                    else:
     3271                        dlg.Destroy()
     3272                        return
    32693273                elif Atoms.GetColLabelValue(c) == 'residue':
    32703274                    choice = []
Note: See TracChangeset for help on using the changeset viewer.