Changeset 4551
- Timestamp:
- Aug 20, 2020 4:24:29 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 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 = [] -
trunk/GSASIIscriptable.py
r4527 r4551 3352 3352 elif control == 'Reverse Seq': 3353 3353 return self.data['Controls']['data']['Reverse Seq'] 3354 elif control == 'seqCopy': 3355 return self.data['Controls']['data']['Copy2Next'] 3354 3356 elif control in self.data['Controls']['data']: 3355 3357 return self.data['Controls']['data'][control] 3356 elif control == 'seqCopy':3357 return self.data['Controls']['data']['Copy2Next']3358 3358 else: 3359 3359 G2fil.G2Print('Defined Controls:',self.data['Controls']['data'].keys())
Note: See TracChangeset
for help on using the changeset viewer.