summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-04-21 18:14:53 -0700
committerMicah Lee <micah@micahflee.com>2019-04-21 18:14:53 -0700
commit9471fb97815a0e54e3d2e7d1a101f9e513989dc4 (patch)
treed7417cd992dc9ec6f25541b7435fb73257422b56
parent99c51f55f919a82cfd86c809867a001f95b09ba5 (diff)
parent81108b06f37113a981db3ff667518c00bb1d98c7 (diff)
downloadonionshare-9471fb97815a0e54e3d2e7d1a101f9e513989dc4.tar.gz
onionshare-9471fb97815a0e54e3d2e7d1a101f9e513989dc4.zip
Fix auto-start timer URL
-rw-r--r--onionshare_gui/settings_dialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/onionshare_gui/settings_dialog.py b/onionshare_gui/settings_dialog.py
index 2419723d..3c0b83f4 100644
--- a/onionshare_gui/settings_dialog.py
+++ b/onionshare_gui/settings_dialog.py
@@ -75,7 +75,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.autostart_timer_checkbox = QtWidgets.QCheckBox()
self.autostart_timer_checkbox.setCheckState(QtCore.Qt.Checked)
self.autostart_timer_checkbox.setText(strings._("gui_settings_autostart_timer_checkbox"))
- autostart_timer_label = QtWidgets.QLabel(strings._("gui_settings_whats_this").format("https://github.com/micahflee/onionshare/wiki/Using-the-Startup-Timer"))
+ autostart_timer_label = QtWidgets.QLabel(strings._("gui_settings_whats_this").format("https://github.com/micahflee/onionshare/wiki/Using-the-Auto-Start-Timer"))
autostart_timer_label.setStyleSheet(self.common.css['settings_whats_this'])
autostart_timer_label.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction)
autostart_timer_label.setOpenExternalLinks(True)