Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2018-12-21 13:50:30 +0300
committerGhostkeeper <rubend@tutanota.com>2018-12-21 13:50:46 +0300
commita5500b028f9d5f43688822d1ba8427868baeb833 (patch)
tree86f9be2491d2e8b59bba4c091bcf828d4a04b499 /cura/CuraActions.py
parentb0cba98ec4833afbfe6f74547ffe27922bcd9194 (diff)
Use HTTPS for Help links
The Ultimaker website doesn't even accept anything else any more.
Diffstat (limited to 'cura/CuraActions.py')
-rw-r--r--cura/CuraActions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/CuraActions.py b/cura/CuraActions.py
index 49f7e740a9..ebb1523f13 100644
--- a/cura/CuraActions.py
+++ b/cura/CuraActions.py
@@ -36,12 +36,12 @@ class CuraActions(QObject):
# Starting a web browser from a signal handler connected to a menu will crash on windows.
# So instead, defer the call to the next run of the event loop, since that does work.
# Note that weirdly enough, only signal handlers that open a web browser fail like that.
- event = CallFunctionEvent(self._openUrl, [QUrl("http://ultimaker.com/en/support/software")], {})
+ event = CallFunctionEvent(self._openUrl, [QUrl("https://ultimaker.com/en/support/software")], {})
cura.CuraApplication.CuraApplication.getInstance().functionEvent(event)
@pyqtSlot()
def openBugReportPage(self) -> None:
- event = CallFunctionEvent(self._openUrl, [QUrl("http://github.com/Ultimaker/Cura/issues")], {})
+ event = CallFunctionEvent(self._openUrl, [QUrl("https://github.com/Ultimaker/Cura/issues")], {})
cura.CuraApplication.CuraApplication.getInstance().functionEvent(event)
## Reset camera position and direction to default