Changes in src/sas/qtgui/Calculators/ResolutionCalculatorPanel.py [e90988c:d6b8a1d] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Calculators/ResolutionCalculatorPanel.py
re90988c rd6b8a1d 366 366 documentation tree (after /doc/ ....". 367 367 """ 368 location = "/user/sasgui/perspectives/calculator/resolution_calculator_help.html" 369 self.manager.showHelp(location) 368 try: 369 location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 370 "/user/sasgui/perspectives/calculator/resolution_calculator_help.html" 371 self.manager._helpView.load(QtCore.QUrl(location)) 372 self.manager._helpView.show() 373 374 except AttributeError: 375 # No manager defined - testing and standalone runs 376 pass 370 377 371 378 def onReset(self):
Note: See TracChangeset
for help on using the changeset viewer.