Changeset 415 for trunk/GSASII.py
- Timestamp:
- Nov 15, 2011 9:07:55 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r411 r415 1509 1509 screenSize = wx.ClientDisplayRect() 1510 1510 Size = dlg.GetSize() 1511 Size = (int(Size[0]*1.2),Size[1]) # increase size a bit along x 1511 1512 dlg.SetPosition(wx.Point(screenSize[2]-Size[0]-305,screenSize[1]+5)) 1513 dlg.SetSize(Size) 1512 1514 try: 1513 1515 G2str.Refine(self.GSASprojectfile,dlg) … … 1544 1546 screenSize = wx.ClientDisplayRect() 1545 1547 Size = dlg.GetSize() 1548 Size = (int(Size[0]*1.2),Size[1]) # increase size a bit along x 1546 1549 dlg.SetPosition(wx.Point(screenSize[2]-Size[0]-305,screenSize[1]+5)) 1550 dlg.SetSize(Size) 1547 1551 try: 1548 1552 G2str.SeqRefine(self.GSASprojectfile,dlg) … … 1617 1621 def main(): 1618 1622 application = GSASIImain(0) 1623 #application.main.OnRefine(None) 1619 1624 application.MainLoop() 1620 1625 1621 1626 if __name__ == '__main__': 1622 1627 main()
Note: See TracChangeset
for help on using the changeset viewer.