Changeset 4846 for trunk


Ignore:
Timestamp:
Mar 8, 2021 5:05:59 PM (2 years ago)
Author:
toby
Message:

save GPX before OnFileSave?

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r4843 r4846  
    52585258                'This command is not yet implemented for sequential fitting')
    52595259            return
     5260        self.OnFileSave(event)
    52605261        item = GetGPXtreeItemId(self,self.root,'Covariance')
    52615262        covData = self.GPXtree.GetItemPyData(item)
  • trunk/GSASIIddataGUI.py

    r4843 r4846  
    843843                UseList[G2frame.hist]['newLeBail'] = True
    844844                Obj.SetLabel('Do new Le Bail extraction?')
    845             UseList[G2frame.hist]['LeBail'] = Obj.GetValue()
    846 
     845            UseList[G2frame.hist]['LeBail'] = not UseList[G2frame.hist]['LeBail']
    847846        def OnResetSize(event):
    848847            Obj = event.GetEventObject()
  • trunk/makeTutorial.py

    r4845 r4846  
    9191    videolist = '<UL>'
    9292    for l in tutorialIndex:
     93        print('.', end='', flush=True)
    9394        if len(l) == 1:
    9495            print("</UL><h4>{}</H4><UL>".format(l[0]),file=out)
     
    148149                  file=out)
    149150    out.close()
    150     print("Tutorials without videos",novideo)
     151    print("\nTutorials without videos",novideo)
    151152
    152153    print("\nStatistics: {} total tutorials, {} with videos"
Note: See TracChangeset for help on using the changeset viewer.