Changeset 4752c31 in sasview for sansguiframe
- Timestamp:
- Jun 4, 2012 5:34:07 PM (12 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:
- 3f68e93
- Parents:
- da7cacb
- Location:
- sansguiframe/src/sans/guiframe
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/data_manager.py
rb5b2e5b r4752c31 275 275 for id, data_state in self.stored_data.iteritems(): 276 276 if data_state.data.name == selected_name: 277 del self._selected_data[id] 278 del self.stored_data[data.id] 277 del self.stored_data[id] 279 278 280 279 def get_data_state(self, data_id): -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/BaseInteractor.py
r8c347a6 r4752c31 135 135 self.move(ev.xdata, ev.ydata, ev) 136 136 else: 137 self.restore( )137 self.restore(ev) 138 138 self.base.update() 139 139 return True … … 147 147 """ 148 148 if ev.key == 'escape': 149 self.restore( )149 self.restore(ev) 150 150 elif ev.key in ['up', 'down', 'right', 'left']: 151 151 dx, dy = self.dpixel(self.clickx, self.clicky, nudge=ev.control) -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/SectorSlicer.py
r940aca7 r4752c31 495 495 """ 496 496 x = params["radius"] 497 self.set_cursor(x, self._inner_mouse_y)497 self.set_cursor(x, None) 498 498 499 499 … … 624 624 """ 625 625 x = params["radius"] 626 self.set_cursor(x, self._inner_mouse_y)627 626 self.set_cursor(x, None) 627 -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/masking.py
rbf7ad65 r4752c31 21 21 import sys 22 22 import time 23 import pylab23 import matplotlib.cm as cm 24 24 import math 25 25 import copy … … 34 34 (InternalEvent, EVT_INTERNAL) = wx.lib.newevent.NewEvent() 35 35 36 DEFAULT_CMAP = pylab.cm.jet36 DEFAULT_CMAP = cm.jet 37 37 _BOX_WIDTH = 76 38 38 _SCALE = 1e-6 … … 647 647 try: 648 648 self.plotpanel.subplot.figure.clf() 649 self.plotpanel. close()649 self.plotpanel.Close() 650 650 except: 651 651 # when called by data panel -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/plotting.py
r940aca7 r4752c31 26 26 IS_WIN = True 27 27 if sys.platform.count("win32")==0: 28 if int( wx.__version__.split('.')[0]) == 2:29 if int( wx.__version__.split('.')[1]) < 9:28 if int(str(wx.__version__).split('.')[0]) == 2: 29 if int(str(wx.__version__).split('.')[1]) < 9: 30 30 IS_WIN = False 31 31
Note: See TracChangeset
for help on using the changeset viewer.