Changeset 2634 for trunk/GSASII.py


Ignore:
Timestamp:
Jan 16, 2017 4:41:14 PM (6 years ago)
Author:
vondreele
Message:

add ExpandAll? to main File menu
change PDF plotting to use color schemes for multiplots
's' option on multiplot changed to color scheme selection
removed G9r0-4pi*r plot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASII.py

    r2629 r2634  
    160160            kind=wx.ITEM_NORMAL,text='&New project')
    161161        self.Bind(wx.EVT_MENU, self.OnFileClose, id=item.GetId())
     162        item = parent.Append(              #not a good idea - reads all images as each is expanded!
     163            help='Expand all items in GSAS-II data tree',id=wx.ID_ANY,
     164            kind=wx.ITEM_NORMAL,text='Expand all')
     165        self.Bind(wx.EVT_MENU,self.ExpandAll,id=item.GetId())
    162166        item = parent.Append(wx.ID_PREFERENCES, text = "&Preferences")
    163167        self.Bind(wx.EVT_MENU, self.OnPreferences, item)
     
    33173321        finally:
    33183322            dlg.Destroy()
     3323           
     3324    def ExpandAll(self,event):
     3325        self.PatternTree.ExpandAll()       
    33193326
    33203327    def ExitMain(self, event):
Note: See TracChangeset for help on using the changeset viewer.