Changeset 831149e in sasview for guitools/PropertyDialog.py


Ignore:
Timestamp:
Apr 15, 2008 2:49:58 PM (16 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
88e7d08
Parents:
3de85b8
Message:

working better .Since have to think about the zoom

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guitools/PropertyDialog.py

    r5789654 r831149e  
    4545        self.xvalue.SetValue("x") 
    4646        self.xvalue.Insert("x",0) 
    47         self.xvalue.Insert("Log(x)",1) 
    48         self.xvalue.Insert("x^(2)",2) 
     47        self.xvalue.Insert("x^(2)",1) 
     48        self.xvalue.Insert("log10(x)",2) 
     49         
    4950         
    5051        # scale value for y 
    51         self.yvalue.SetValue("Log(y)") 
     52        self.yvalue.SetValue("log10(y)") 
    5253        self.yvalue.Insert("y",0) 
    53         self.yvalue.Insert("Log(y)",1) 
    54         self.yvalue.Insert("y^(2)",2) 
    55         self.yvalue.Insert("1/y",3) 
     54        self.yvalue.Insert("1/y",1) 
     55        self.yvalue.Insert("ln(y)",2) 
     56        self.yvalue.Insert("y^(2)",3) 
    5657        self.yvalue.Insert("1/sqrt(y)",4) 
    57         self.yvalue.Insert("Log(y*x)",5) 
    58         self.yvalue.Insert("Log(y*x^(2))",6) 
     58        self.yvalue.Insert("log10(y)",5) 
     59        self.yvalue.Insert("ln(y*x)",6) 
     60        self.yvalue.Insert("ln(y*x^(2))",7) 
     61        self.yvalue.Insert("ln(y*x^(4))",8) 
    5962         
    6063        panel.SetSizer(sizer) 
Note: See TracChangeset for help on using the changeset viewer.