the help form should look like this or similar but it is not working at the moment; maybe QTextBrowser element of HelpForm should be replaced by QWebView (pending)

This commit is contained in:
Sebastian Wehling-Benatelli 2014-06-11 15:19:37 +02:00
parent 46f5e55c8e
commit 0481fa748b

View File

@ -115,8 +115,11 @@ class MainWindow(QMainWindow):
return layout
def helpHelp(self):
if internet_on():
pass
if checkurl():
form = HelpForm('https://ariadne.geophysik.rub.de/trac/PyLoT/wiki')
else:
form = HelpForm(':/help.html')
form.show()
def main():