Changeset 3753
- Timestamp:
- Dec 5, 2018 8:56:56 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpwdGUI.py
r3746 r3753 3365 3365 if 'N' in Inst['Type'][0]: 3366 3366 if not ssopt.get('Use',False): 3367 G2frame.dataWindow.RunSubGroups.Enable(True) 3367 G2frame.dataWindow.RunSubGroupsMag.Enable(True) 3368 # G2frame.dataWindow.RunSubGroups.Enable(True) 3368 3369 data = controls,bravais,cells,dminx,ssopt,magcells 3369 3370 G2frame.GPXtree.SetItemPyData(UnitCellsId,data) -
trunk/GSASIIspc.py
r3750 r3753 2544 2544 if Ax[0] < 0: 2545 2545 iC = -1 2546 Ax[0]= abs(Ax[0])2547 nA = Ax[0]%100-12548 nC = Ax[0]//1002546 iAx = abs(Ax[0]) 2547 nA = iAx%100-1 2548 nC = iAx//100 2549 2549 unit = [0,0,0] 2550 2550 if len(Ax) > 1:
Note: See TracChangeset
for help on using the changeset viewer.