Changeset e147ce2 in sasview for src/sas/qtgui/Perspectives/Fitting
- Timestamp:
- Jan 10, 2018 5:35:50 AM (7 years ago)
- Branches:
- 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
- Children:
- 570e091
- Parents:
- d3c0b95
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/MultiConstraint.py
rd3c0b95 re147ce2 2 2 Widget for parameter constraints. 3 3 """ 4 import os 4 5 from numpy import * 5 6 … … 7 8 from PyQt5 import QtGui 8 9 from PyQt5 import QtWidgets 10 import webbrowser 9 11 10 12 import sas.qtgui.Utilities.GuiUtils as GuiUtils … … 128 130 """ 129 131 try: 130 location = GuiUtils.HELP_DIRECTORY_LOCATION + \132 help_location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 131 133 "/user/sasgui/perspectives/fitting/fitting_help.html#simultaneous-fits-with-constraints" 132 133 self.manager._helpView.load(QtCore.QUrl(location)) 134 self.manager._helpView.show() 134 webbrowser.open('file://' + os.path.realpath(help_location)) 135 135 except AttributeError: 136 136 # No manager defined - testing and standalone runs
Note: See TracChangeset
for help on using the changeset viewer.