Changeset cad617b in sasview for src/sas/qtgui/Plotter2D.py


Ignore:
Timestamp:
Dec 8, 2016 3:46:27 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:
b4b8589, d1fb22ee
Parents:
416fa8f
Message:

Code review issues, fixing matplotlib behaviour in unit testing, minor fixes.

File:
1 edited

Legend:

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

    r416fa8f rcad617b  
    4747            self.scale = 'linear' 
    4848            if not self.zmin is None: 
    49                 zmin_2D_temp = numpy.pow(10, self.zmin) 
     49                zmin_2D_temp = numpy.power(10, self.zmin) 
    5050            if not self.zmax is None: 
    51                 zmax_2D_temp = numpy.pow(10, self.zmax) 
     51                zmax_2D_temp = numpy.power(10, self.zmax) 
    5252        else: 
    5353            self.scale = 'log_{10}' 
     
    194194 
    195195        QtGui.QDialog.__init__(self) 
    196         Plotter2DWidget.__init__(self, manager=parent, quickplot=quickplot, dimension=2) 
     196        Plotter2DWidget.__init__(self, manager=parent, quickplot=quickplot, dimension=dimension) 
Note: See TracChangeset for help on using the changeset viewer.