Changeset 3753


Ignore:
Timestamp:
Dec 5, 2018 8:56:56 AM (4 years ago)
Author:
vondreele
Message:

fix run k-SUBGROUPSMAG bug

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpwdGUI.py

    r3746 r3753  
    33653365        if 'N' in Inst['Type'][0]:
    33663366            if not ssopt.get('Use',False):
    3367                 G2frame.dataWindow.RunSubGroups.Enable(True)
     3367                G2frame.dataWindow.RunSubGroupsMag.Enable(True)
     3368#                G2frame.dataWindow.RunSubGroups.Enable(True)
    33683369        data = controls,bravais,cells,dminx,ssopt,magcells
    33693370        G2frame.GPXtree.SetItemPyData(UnitCellsId,data)
  • trunk/GSASIIspc.py

    r3750 r3753  
    25442544    if Ax[0] < 0:
    25452545        iC = -1
    2546     Ax[0] = abs(Ax[0])
    2547     nA = Ax[0]%100-1
    2548     nC = Ax[0]//100
     2546    iAx = abs(Ax[0])
     2547    nA = iAx%100-1
     2548    nC = iAx//100
    25492549    unit = [0,0,0]
    25502550    if len(Ax) > 1:
Note: See TracChangeset for help on using the changeset viewer.