Changeset 61bfd36 in sasview for src/sas/sasgui/perspectives
- Timestamp:
- Feb 13, 2018 12:15:48 PM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- c36c09f, 8a32342d, 18d50612, 943e17a, d1520fc
- Parents:
- 1eb86a5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/calculator/calculator.py
r235f514 r61bfd36 86 86 ("Generic Scattering Calculator", 87 87 gensas_help, self.on_gen_model), 88 ("Orientation Viewer", "Show 3-D view of oriented shape", self.on_show_orientation), 88 89 ("Python Shell/Editor", pyconsole_help, self.on_python_console), 89 90 ("Image Viewer", imageviewer_help, self.on_image_viewer), ] … … 190 191 self.gen_frame.Show(False) 191 192 self.gen_frame.Show(True) 193 194 def on_show_orientation(self, event): 195 """ 196 Make sasmodels orientation & jitter viewer available 197 """ 198 from sasmodels.jitter import run 199 run() 192 200 193 201 def on_image_viewer(self, event):
Note: See TracChangeset
for help on using the changeset viewer.