Changeset 96c430d in sasview for prview/perspectives


Ignore:
Timestamp:
Jul 4, 2009 5:17:34 PM (15 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
ceb89ac
Parents:
b90decd
Message:

prview: build script and text control fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • prview/perspectives/pr/explore_dialog.py

    r164c7d0 r96c430d  
    148148         
    149149        # Control for number of points 
    150         self.npts_ctl = wx.TextCtrl(self, -1, size=(60,20)) 
     150        self.npts_ctl = wx.TextCtrl(self, -1, style=wx.TE_PROCESS_ENTER, size=(60,20)) 
    151151        # Control for the minimum value of D_max 
    152         self.dmin_ctl = wx.TextCtrl(self, -1, size=(60,20)) 
     152        self.dmin_ctl = wx.TextCtrl(self, -1, style=wx.TE_PROCESS_ENTER, size=(60,20)) 
    153153        # Control for the maximum value of D_max 
    154         self.dmax_ctl = wx.TextCtrl(self, -1, size=(60,20)) 
     154        self.dmax_ctl = wx.TextCtrl(self, -1, style=wx.TE_PROCESS_ENTER, size=(60,20)) 
    155155 
    156156        # Output selection box for the y axis 
Note: See TracChangeset for help on using the changeset viewer.