Changeset 3467


Ignore:
Timestamp:
Jul 12, 2018 10:24:21 AM (5 years ago)
Author:
vondreele
Message:

fix problem in constraints where a deleted constraint variable wasn't made available for making a new constraint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIconstrGUI.py

    r3462 r3467  
    10021002        Id,name = Indx[Obj.GetId()]
    10031003        del data[name][Id]
     1004        allcons = []
     1005        for key in data:
     1006            if key.startswith('_'): continue
     1007            allcons += data[key]
     1008        if not len(allcons): return
     1009        errmsg,warnmsg = CheckConstraints(allcons)
    10041010        wx.CallAfter(OnPageChanged,None)
    10051011       
Note: See TracChangeset for help on using the changeset viewer.