Changeset 4764 for trunk/GSASIIctrlGUI.py
- Timestamp:
- Jan 13, 2021 9:42:03 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4680 r4764 549 549 xmin=min 550 550 if GSASIIpath.GetConfigValue('debug'): 551 print('C hange min to xminhere:')551 print('Call to ValidatedTxtCtrl using min (change to xmin) here:') 552 552 G2obj.HowDidIgetHere(True) 553 553 if max is not None: 554 554 xmax=max 555 555 if GSASIIpath.GetConfigValue('debug'): 556 print('C hange max to xmaxhere:')556 print('Call to ValidatedTxtCtrl using max (change to xmax) here:') 557 557 G2obj.HowDidIgetHere(True) 558 558 # initialization … … 1472 1472 kargs = {} 1473 1473 if i < len(minvals): 1474 if minvals[i] is not None: kargs[' min']=minvals[i]1474 if minvals[i] is not None: kargs['xmin']=minvals[i] 1475 1475 if i < len(maxvals): 1476 if maxvals[i] is not None: kargs[' max']=maxvals[i]1476 if maxvals[i] is not None: kargs['xmax']=maxvals[i] 1477 1477 if i < len(sizevals): 1478 1478 if sizevals[i]: kargs['size']=sizevals[i] … … 1518 1518 btnsizer = wx.BoxSizer(wx.HORIZONTAL) 1519 1519 btnsizer.Add(self.OKbtn) 1520 self.OKbtn.Bind(wx.EVT_BUTTON,lambda event: self.EndModal(wx.ID_OK)) 1520 1521 btn = wx.Button(self, wx.ID_CLOSE,"Cancel") 1521 1522 btn.Bind(wx.EVT_BUTTON,self._onClose)
Note: See TracChangeset
for help on using the changeset viewer.