Skip to content

Commit

Permalink
Fix typos in Help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
avancra committed Mar 29, 2019
1 parent e278f15 commit 4a4c677
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pals3D/pals3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# put here visual ressources
ICON_OK = ":/icons/ok.png"
ICON_WARNING = ":/icons/warning.png"
VERSION = '0.1'
VERSION = '1.0'


class MainWindow(QtWidgets.QMainWindow, acqGUI.Ui_MainWindow):
Expand Down Expand Up @@ -420,7 +420,7 @@ def on_actionAbout_triggered(self):

@QtCore.pyqtSlot()
def on_actionPalss3D_help_triggered(self):
webbrowser.open('https://github.com/avancra/Pals3D')
webbrowser.open('http://pals3d.readthedocs.io/')

def checkExistingFilename(self, filename):
try:
Expand Down Expand Up @@ -450,7 +450,7 @@ def fetchAcqSettings(self, mode):

def fetchSettings(self, mode):
"""Get the CFD settings for each channel from the GUI widgets"""
if mode is "T2":
if mode == "T2":
self.th260.syncCFDLevel = self.T2syncLevelValue.value()
self.th260.syncCFDZeroCross = self.T2syncZeroValue.value()
self.th260.syncOffset = self.T2syncOffsetValue.value()
Expand Down

0 comments on commit 4a4c677

Please sign in to comment.