Changeset 3459
- Timestamp:
- Jun 29, 2018 11:54:56 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3458 r3459 3880 3880 3881 3881 def SetSize(self, rect): 3882 self._tc.Set Dimensions(rect.x, rect.y, rect.width+2, rect.height+2,3882 self._tc.SetSize(rect.x, rect.y, rect.width+2, rect.height+2, 3883 3883 wx.SIZE_ALLOW_MINUS_ONE) 3884 3884 -
trunk/GSASIIdataGUI.py
r3451 r3459 4615 4615 Sizer = self.GetSizer() 4616 4616 if Sizer: 4617 Sizer.Clear(True) 4617 try: 4618 Sizer.Clear(True) 4619 except: 4620 pass 4618 4621 else: 4619 4622 print ('No sizer in dataWindow') -
trunk/GSASIIphsGUI.py
r3449 r3459 979 979 if not dlg.Show(): 980 980 dlg.Destroy() 981 return 981 return SpGrp 982 982 else: 983 983 try: … … 1392 1392 # try a lookup on the user-supplied name 1393 1393 SpcGp = GetSpGrpfromUser(General,SpGrp) 1394 if SpcGp == SpGrp: 1395 return #unchanged - do nothing 1394 1396 SpGrpNorm = G2spc.StandardizeSpcName(SpcGp) 1395 1397 if SpGrpNorm:
Note: See TracChangeset
for help on using the changeset viewer.