Changeset 239214f in sasview for src/sas/qtgui/Plotter.py


Ignore:
Timestamp:
Jan 13, 2017 7:23:38 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
0f3c22d
Parents:
2e3e959
Message:

Remove graph properties - MPL dialog is enough.
Minor fix in Plot Properties (WP review)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotter.py

    r87cc73a r239214f  
    166166        # Additional menu items 
    167167        self.contextMenu.addSeparator() 
    168         self.actionModifyGraphAppearance =\ 
    169             self.contextMenu.addAction("Modify Graph Appearance") 
    170         self.contextMenu.addSeparator() 
    171168        self.actionAddText = self.contextMenu.addAction("Add Text") 
    172169        self.actionRemoveText = self.contextMenu.addAction("Remove Text") 
     
    183180 
    184181        # Define the callbacks 
    185         self.actionModifyGraphAppearance.triggered.connect(self.onModifyGraph) 
    186182        self.actionAddText.triggered.connect(self.onAddText) 
    187183        self.actionRemoveText.triggered.connect(self.onRemoveText) 
     
    264260            self.xLogLabel, self.yLogLabel = self.properties.getValues() 
    265261            self.xyTransform(self.xLogLabel, self.yLogLabel) 
    266  
    267     def onModifyGraph(self): 
    268         """ 
    269         Show a dialog allowing chart manipulations 
    270         """ 
    271         print ("onModifyGraph") 
    272         pass 
    273262 
    274263    def onAddText(self): 
Note: See TracChangeset for help on using the changeset viewer.