Changeset b7f29fc in sasview
- Timestamp:
- Apr 11, 2010 5:11:29 PM (15 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, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- db10f97
- Parents:
- 9abec44
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
invariantview/perspectives/invariant/invariant_panel.py
r9abec44 rb7f29fc 56 56 def __init__(self, parent, data=None, manager=None): 57 57 ScrolledPanel.__init__(self, parent) 58 self.SetupScrolling()59 58 #Font size 60 59 self.SetWindowVariant(variant=FONT_VARIANT) … … 72 71 if self.parent is not None: 73 72 msg = "" 74 wx.PostEvent(self.parent, StatusEvent(status= msg)) 73 wx.PostEvent(self.parent, StatusEvent(status=msg)) 74 self.SetupScrolling() 75 75 76 76 def err_check_on_data(self): … … 104 104 self.reset_panel() 105 105 self.compute_invariant(event=None) 106 106 107 107 def set_message(self): 108 108 """ … … 420 420 self.button_details.Enable() 421 421 self.button_details.SetFocus() 422 self.Layout()423 422 424 423 def reset_panel(self): … … 460 459 #prepare a new container to put result of invariant 461 460 self.inv_container = InvariantContainer() 462 self.Layout() 463 461 464 462 def _define_structure(self): 465 463 """ … … 728 726 self._enable_fit_power_law_high() 729 727 self.button_calculate.SetFocus() 730 728 731 729 def _layout_extrapolation_high(self): 732 730 """ … … 973 971 wx.LEFT|wx.RIGHT|wx.BOTTOM, 10)]) 974 972 self.SetSizer(self.main_sizer) 975 self.SetAutoLayout(True)973 #self.SetAutoLayout(True) 976 974 977 975 class InvariantDialog(wx.Dialog):
Note: See TracChangeset
for help on using the changeset viewer.