~ubuntu-branches/ubuntu/utopic/python-traitsui/utopic

« back to all changes in this revision

Viewing changes to traitsui/wx/range_editor.py

  • Committer: Package Import Robot
  • Author(s): Varun Hiremath
  • Date: 2012-04-23 16:05:43 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20120423160543-bgafgw04y68arfjn
Tags: 4.1.0-1
* New upstream release
* Bump Standards-Version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
767
767
                                    max     = high,
768
768
                                    initial = self.value )
769
769
        wx.EVT_SPINCTRL( parent, self.control.GetId(), self.update_object )
770
 
        if sys.platform.startswith( 'win' ):
771
 
            wx.EVT_TEXT( parent, self.control.GetId(), self.update_object )
 
770
        wx.EVT_TEXT( parent, self.control.GetId(), self.update_object )
772
771
        self.set_tooltip()
773
772
 
774
773
    #---------------------------------------------------------------------------