Changeset b789967 in sasview for src/sas/qtgui/SlicerParameters.py


Ignore:
Timestamp:
Feb 4, 2017 11:01:26 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:
e712ca5
Parents:
965fbd8
Message:

More minor fixes to plotting

File:
1 edited

Legend:

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

    • Property mode changed from 100755 to 100644
    r3bdbfcc rb789967  
    3030        # Disallow edit of the parameter name column. 
    3131        self.lstParams.model().setColumnReadOnly(0, True) 
     32 
     33        # Disable row number display 
     34        self.lstParams.verticalHeader().setVisible(False) 
    3235 
    3336        # Specify the validator on the parameter value column. 
     
    6871            editor = QtGui.QLineEdit(widget) 
    6972            validator = QtGui.QDoubleValidator() 
     73            # Don't use the scientific notation, cause 'e'. 
     74            validator.setNotation(QtGui.QDoubleValidator.StandardNotation) 
    7075            editor.setValidator(validator) 
    7176            return editor 
Note: See TracChangeset for help on using the changeset viewer.