summaryrefslogtreecommitdiff
path: root/onionshare_gui
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-09-08 12:02:17 -0700
committerMicah Lee <micah@micahflee.com>2019-09-08 12:02:17 -0700
commitece908e170b2bab355085769bf50f03cffb1b5b4 (patch)
tree7800af76ebb53ac9579665f6ee804d742453bec7 /onionshare_gui
parentde67484f09058af70e443e0bc1ebc1c8af2a8ab2 (diff)
downloadonionshare-ece908e170b2bab355085769bf50f03cffb1b5b4.tar.gz
onionshare-ece908e170b2bab355085769bf50f03cffb1b5b4.zip
Add individual downloads label to settings dialog
Diffstat (limited to 'onionshare_gui')
-rw-r--r--onionshare_gui/settings_dialog.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/onionshare_gui/settings_dialog.py b/onionshare_gui/settings_dialog.py
index 6ffd4523..5dbc31d2 100644
--- a/onionshare_gui/settings_dialog.py
+++ b/onionshare_gui/settings_dialog.py
@@ -204,10 +204,12 @@ class SettingsDialog(QtWidgets.QDialog):
self.close_after_first_download_checkbox = QtWidgets.QCheckBox()
self.close_after_first_download_checkbox.setCheckState(QtCore.Qt.Checked)
self.close_after_first_download_checkbox.setText(strings._("gui_settings_close_after_first_download_option"))
+ individual_downloads_label = QtWidgets.QLabel(strings._("gui_settings_individual_downloads_label"))
# Sharing options layout
sharing_group_layout = QtWidgets.QVBoxLayout()
sharing_group_layout.addWidget(self.close_after_first_download_checkbox)
+ sharing_group_layout.addWidget(individual_downloads_label)
sharing_group = QtWidgets.QGroupBox(strings._("gui_settings_sharing_label"))
sharing_group.setLayout(sharing_group_layout)