Changeset effce1d in sasview for invariantview


Ignore:
Timestamp:
Nov 16, 2010 11:52:36 AM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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:
cbaa2f4
Parents:
519c693
Message:

changed to setvalue from setlabel for qmin qmax tcls (MAC bug)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • invariantview/perspectives/invariant/invariant_panel.py

    r645f9b6 reffce1d  
    128128            data_qmax = max (self._data.x) 
    129129            self.data_name_tcl.SetValue(str(data_name)) 
    130             self.data_min_tcl.SetLabel(str(data_qmin)) 
    131             self.data_max_tcl.SetLabel(str(data_qmax)) 
     130            self.data_min_tcl.SetValue(str(data_qmin)) 
     131            self.data_max_tcl.SetValue(str(data_qmax)) 
    132132            self.reset_panel() 
    133133            self.compute_invariant(event=None) 
     
    215215            data_qmax = '' 
    216216            self.data_name_tcl.SetValue(str(data_name)) 
    217             self.data_min_tcl.SetLabel(str(data_qmin)) 
    218             self.data_max_tcl.SetLabel(str(data_qmax)) 
     217            self.data_min_tcl.SetValue(str(data_qmin)) 
     218            self.data_max_tcl.SetValue(str(data_qmax)) 
    219219            #reset output textctrl 
    220220            self._reset_output() 
Note: See TracChangeset for help on using the changeset viewer.