Changeset 228a8bb in sasview
- Timestamp:
- Jun 11, 2011 11:47:41 AM (14 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:
- 8bb0660
- Parents:
- af7ba61
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/data_panel.py
raf7ba61 r228a8bb 16 16 toks = wx.__version__.split('.') 17 17 if int(toks[1]) < 9: 18 wx_version = 8 18 if int(toks[2]) < 12: 19 wx_version = 811 20 else: 21 wx_version = 812 19 22 else: 20 wx_version = 9 23 wx_version = 900 21 24 import sys 22 25 import warnings … … 82 85 def __init__(self, parent,*args, **kwds): 83 86 #agwstyle is introduced in wx.2.8.11 but is not working for mac 84 if IS_MAC and wx_version < 9:87 if IS_MAC and wx_version < 812: 85 88 try: 86 89 kwds['style'] = STYLE_FLAG
Note: See TracChangeset
for help on using the changeset viewer.