mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-25 10:42:58 -03:00
Save the use_autoupdate setting
This commit is contained in:
parent
4261670b59
commit
4b5319bb4e
1 changed files with 5 additions and 0 deletions
|
@ -595,6 +595,11 @@ class SettingsDialog(QtWidgets.QDialog):
|
|||
if self.connection_type_socket_file_radio.isChecked():
|
||||
settings.set('connection_type', 'socket_file')
|
||||
|
||||
if self.autoupdate_checkbox.isChecked():
|
||||
settings.set('use_autoupdate', True)
|
||||
else:
|
||||
settings.set('use_autoupdate', False)
|
||||
|
||||
settings.set('control_port_address', self.connection_type_control_port_extras_address.text())
|
||||
settings.set('control_port_port', self.connection_type_control_port_extras_port.text())
|
||||
settings.set('socket_file_path', self.connection_type_socket_file_extras_path.text())
|
||||
|
|
Loading…
Add table
Reference in a new issue