Ignore:
Timestamp:
Nov 30, 2018 4:57:46 AM (6 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
Children:
99f8760, 11a336f, 9d23e4c
Parents:
5d75a181
Message:

Show Plot now restores minimized plots. SASVIEW-1221 == trac#13
Added "Minimize all plots" to Window menu
Changed draw → draw_idle to avoid weird numpy linalg errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    re5ae812 rd9e7792  
    521521        self._workspace.actionNext.triggered.connect(self.actionNext) 
    522522        self._workspace.actionPrevious.triggered.connect(self.actionPrevious) 
     523        self._workspace.actionMinimizePlots.triggered.connect(self.actionMinimizePlots) 
    523524        self._workspace.actionClosePlots.triggered.connect(self.actionClosePlots) 
    524525        # Analysis 
     
    994995        pass 
    995996 
     997    def actionMinimizePlots(self): 
     998        """ 
     999        Minimizes all Plotters and Plotter2Ds. 
     1000        """ 
     1001        self.filesWidget.minimizeAllPlots() 
     1002        pass 
     1003 
    9961004    #============ HELP ================= 
    9971005    def actionDocumentation(self): 
Note: See TracChangeset for help on using the changeset viewer.