Changeset 3560196 in sasview
- Timestamp:
- Jul 11, 2016 4:36:55 AM (8 years ago)
- 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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 6ccf18e
- Parents:
- a684c64
- git-author:
- Lewis O'Driscoll <lewis.o'driscoll@…> (07/08/16 11:33:30)
- git-committer:
- Lewis O'Driscoll <lewis.o'driscoll@…> (07/11/16 04:36:55)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/corfunc/corfunc_panel.py
ra684c64 r3560196 414 414 style=wx.ALIGN_CENTER_HORIZONTAL) 415 415 416 qmin_lower = OutputTextCtrl(self, -1, size=( 50, 20), value="0.0")417 self._qmin_input = ModelTextCtrl(self, -1, size=( 50, 20),416 qmin_lower = OutputTextCtrl(self, -1, size=(75, 20), value="0.0") 417 self._qmin_input = ModelTextCtrl(self, -1, size=(75, 20), 418 418 style=wx.TE_PROCESS_ENTER, name='qmin_input', 419 419 text_enter_callback=self._on_enter_input) … … 434 434 style=wx.ALIGN_CENTER_HORIZONTAL) 435 435 436 self._qmax1_input = ModelTextCtrl(self, -1, size=( 50, 20),436 self._qmax1_input = ModelTextCtrl(self, -1, size=(75, 20), 437 437 style=wx.TE_PROCESS_ENTER, name="qmax1_input", 438 438 text_enter_callback=self._on_enter_input) 439 439 self._qmax1_input.SetToolTipString(qmax_tooltip) 440 self._qmax2_input = ModelTextCtrl(self, -1, size=( 50, 20),440 self._qmax2_input = ModelTextCtrl(self, -1, size=(75, 20), 441 441 style=wx.TE_PROCESS_ENTER, name="qmax2_input", 442 442 text_enter_callback=self._on_enter_input) … … 451 451 q_sizer.Add(background_label, (4,0), (1,1), wx.LEFT | wx.EXPAND, 5) 452 452 453 self._background_input = ModelTextCtrl(self, -1, size=( 50,20),453 self._background_input = ModelTextCtrl(self, -1, size=(75,20), 454 454 style=wx.TE_PROCESS_ENTER, name='background_input', 455 455 text_enter_callback=self._on_enter_input)
Note: See TracChangeset
for help on using the changeset viewer.