Changeset 0f3c22d in sasview for src/sas/qtgui/PlotProperties.py


Ignore:
Timestamp:
Jan 16, 2017 6:05:40 AM (8 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:
092a3d9
Parents:
239214f
Message:

Code review for SASVIEW-383

File:
1 edited

Legend:

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

    • Property mode changed from 100755 to 100644
    r239214f r0f3c22d  
    11from PyQt4 import QtGui 
    2  
    3 import sas.sasview 
    42 
    53from sas.qtgui.PlotUtilities import COLORS, SHAPES 
     
    2422        self._legend = legend 
    2523        self._markersize = marker_size if marker_size else 5 
    26         self.custom_color = False 
     24        self.custom_color = False if isinstance(self._color, int) else True 
    2725 
    2826        # Fill out the color combobox 
     
    6866            return self.cbColor.currentIndex() 
    6967 
    70     def onColorChange(self, event): 
     68    def onColorChange(self): 
    7169        """ 
    7270        Pop up the standard Qt color change dialog 
    7371        """ 
    7472        # Pick up the chosen color 
    75         self._color = QtGui.QColorDialog.getColor(parent=self) 
     73        proposed_color = QtGui.QColorDialog.getColor(parent=self) 
    7674        # Update the text control 
    77         if self._color.isValid(): 
     75        if proposed_color.isValid(): 
    7876            # Block currentIndexChanged 
    7977            self.cbColor.blockSignals(True) 
     
    8583            # Save the color as #RRGGBB 
    8684            self.custom_color = True 
    87             self._color = str(self._color.name()) 
     85            self._color = str(proposed_color.name()) 
    8886    
    89     def onColorIndexChange(self, index): 
     87    def onColorIndexChange(self): 
    9088        """ 
    9189        Dynamically add/remove "Custom" color index 
     
    9694        if custom_index > -1: 
    9795            self.cbColor.removeItem(custom_index) 
    98  
    99         pass # debug hook 
    10096         
Note: See TracChangeset for help on using the changeset viewer.