Changeset a5e1b6ca in sasview for src/sas/sasgui/perspectives/calculator
- Timestamp:
- Apr 1, 2019 1:11:34 PM (6 years ago)
- Branches:
- ticket-1249
- Children:
- 0dde203
- Parents:
- 9305b46
- Location:
- src/sas/sasgui/perspectives/calculator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/calculator/data_editor.py
r5251ec6 ra5e1b6ca 19 19 _QMAX_DEFAULT = 0.13 20 20 _NPTS_DEFAULT = 50 21 #Control panel width 21 #Control panel width 22 22 if sys.platform.count("darwin") == 0: 23 23 PANEL_WIDTH = 500 … … 196 196 summary = 'No data info available...' 197 197 self.data_summary.SetValue(summary) 198 #self.summary_sizer.Add(self.data_summary, 1, wx.EXPAND|wx.ALL, 10) 198 #self.summary_sizer.Add(self.data_summary, 1, wx.EXPAND|wx.ALL, 10) 199 199 200 200 def _layout_button(self): … … 579 579 wildcard = "CanSAS 1D files(*.xml)|*.xml" 580 580 dlg = wx.FileDialog(self, "Choose a file", 581 self._default_save_location, "", wildcard , wx.SAVE) 581 self._default_save_location, "", wildcard , 582 wx.FD_SAVE) 582 583 583 584 for data in self._data: -
src/sas/sasgui/perspectives/calculator/gen_scatter_panel.py
r34f23c8 ra5e1b6ca 1671 1671 location, "sld_file", 1672 1672 extension, 1673 wx. SAVE)1673 wx.FD_SAVE) 1674 1674 if dlg.ShowModal() == wx.ID_OK: 1675 1675 path = dlg.GetPath()
Note: See TracChangeset
for help on using the changeset viewer.