Changeset 4551 for trunk/GSASIIphsGUI.py
- Timestamp:
- Aug 20, 2020 4:24:29 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r4550 r4551 3257 3257 choice.append(str(atomData[r][c])) 3258 3258 choice.sort() 3259 dlg = wx.SingleChoiceDialog(G2frame,'Select','Name',choice) 3259 dlg = wx.SingleChoiceDialog(G2frame,'Select atom(s) by name', 3260 'Name Selection',choice) 3260 3261 if dlg.ShowModal() == wx.ID_OK: 3261 3262 sel = dlg.GetSelection() … … 3266 3267 if parms == atomData[row][c]: 3267 3268 Atoms.SelectRow(row,True) 3268 dlg.Destroy() 3269 dlg.Destroy() 3270 else: 3271 dlg.Destroy() 3272 return 3269 3273 elif Atoms.GetColLabelValue(c) == 'residue': 3270 3274 choice = []
Note: See TracChangeset
for help on using the changeset viewer.