Changeset 390494d in sasview for src/sas/qtgui


Ignore:
Timestamp:
Feb 22, 2019 9:52:14 AM (5 years ago)
Author:
GitHub <noreply@…>
Branches:
ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
Children:
1078936c, 44a698c
Parents:
091eee64 (diff), afdb3b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Piotr Rozyczko <piotr.rozyczko@…> (02/22/19 09:52:14)
git-committer:
GitHub <noreply@…> (02/22/19 09:52:14)
Message:

Merge pull request #206 from mrakitin/fix_installer

FIX: add a proper entry point

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    r33c0561 r091eee64  
    10191019    def actionTutorial(self): 
    10201020        """ 
    1021         Open the tutorial PDF file with default PDF renderer 
    1022         """ 
    1023         # Not terribly safe here. Shell injection warning. 
    1024         # isfile() helps but this probably needs a better solution. 
    1025         if os.path.isfile(self._tutorialLocation): 
    1026             result = subprocess.Popen([self._tutorialLocation], shell=True) 
     1021        Open the page with tutorial PDF links 
     1022        """ 
     1023        helpfile = "/user/tutorial.html" 
     1024        self.showHelp(helpfile) 
    10271025 
    10281026    def actionAcknowledge(self): 
Note: See TracChangeset for help on using the changeset viewer.