Changes in / [0989bad:2327399] in sasview
- Location:
- src/sas/qtgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Invariant/InvariantPerspective.py
r6ae7466 r11a336f 348 348 extrapolated_data.name = title 349 349 extrapolated_data.title = title 350 extrapolated_data.s tyle= "Line"350 extrapolated_data.symbol = "Line" 351 351 extrapolated_data.has_errors = False 352 extrapolated_data.plot_role = Data1D.ROLE_DEFAULT353 352 354 353 # copy labels and units of axes for plotting … … 382 381 high_out_data.name = title 383 382 high_out_data.title = title 384 high_out_data.s tyle= "Line"383 high_out_data.symbol = "Line" 385 384 high_out_data.has_errors = False 386 high_out_data.plot_role = Data1D.ROLE_DEFAULT387 385 388 386 # copy labels and units of axes for plotting -
src/sas/qtgui/Utilities/GridPanel.py
r99f8760 ra8e6394 186 186 Open a local url in the default browser 187 187 """ 188 location = GuiUtils.HELP_DIRECTORY_LOCATION189 188 url = "/user/qtgui/Perspectives/Fitting/fitting_help.html#batch-fit-mode" 189 location = GuiUtils.HELP_DIRECTORY_LOCATION + url 190 if os.path.isdir(location) == False: 191 sas_path = os.path.abspath(os.path.dirname(sys.argv[0])) 192 location = sas_path + "/" + location 190 193 try: 191 webbrowser.open('file://' + os.path.realpath(location +url))194 webbrowser.open('file://' + os.path.realpath(location)) 192 195 except webbrowser.Error as ex: 193 196 logging.warning("Cannot display help. %s" % ex)
Note: See TracChangeset
for help on using the changeset viewer.