Merge branch 'mig5-520_fix_hyperlink_qlabel'

This commit is contained in:
Micah Lee 2018-01-13 17:01:55 -08:00
commit c0252826ab
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -72,6 +72,8 @@ class SettingsDialog(QtWidgets.QDialog):
# Stealth
stealth_details = QtWidgets.QLabel(strings._("gui_settings_stealth_option_details", True))
stealth_details.setWordWrap(True)
stealth_details.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction)
stealth_details.setOpenExternalLinks(True)
self.stealth_checkbox = QtWidgets.QCheckBox()
self.stealth_checkbox.setCheckState(QtCore.Qt.Unchecked)
self.stealth_checkbox.setText(strings._("gui_settings_stealth_option", True))