mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Reload Settings whenever the settings get saved in SettingsDialog
This commit is contained in:
parent
e626a410f3
commit
5846b06478
@ -206,7 +206,15 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
|||||||
"""
|
"""
|
||||||
Open the SettingsDialog.
|
Open the SettingsDialog.
|
||||||
"""
|
"""
|
||||||
SettingsDialog(self.onion, self.qtapp)
|
common.log('OnionShareGui', 'open_settings')
|
||||||
|
|
||||||
|
def reload_settings():
|
||||||
|
common.log('OnionShareGui', 'open_settings', 'settings have changed, reloading')
|
||||||
|
self.settings.load()
|
||||||
|
|
||||||
|
d = SettingsDialog(self.onion, self.qtapp)
|
||||||
|
d.settings_saved.connect(reload_settings)
|
||||||
|
d.exec_()
|
||||||
|
|
||||||
def start_server(self):
|
def start_server(self):
|
||||||
"""
|
"""
|
||||||
|
@ -32,6 +32,8 @@ class SettingsDialog(QtWidgets.QDialog):
|
|||||||
"""
|
"""
|
||||||
Settings dialog.
|
Settings dialog.
|
||||||
"""
|
"""
|
||||||
|
settings_saved = QtCore.pyqtSignal()
|
||||||
|
|
||||||
def __init__(self, onion, qtapp):
|
def __init__(self, onion, qtapp):
|
||||||
super(SettingsDialog, self).__init__()
|
super(SettingsDialog, self).__init__()
|
||||||
common.log('SettingsDialog', '__init__')
|
common.log('SettingsDialog', '__init__')
|
||||||
@ -312,9 +314,6 @@ class SettingsDialog(QtWidgets.QDialog):
|
|||||||
self.authenticate_password_radio.setChecked(True)
|
self.authenticate_password_radio.setChecked(True)
|
||||||
self.authenticate_password_extras_password.setText(self.old_settings.get('auth_password'))
|
self.authenticate_password_extras_password.setText(self.old_settings.get('auth_password'))
|
||||||
|
|
||||||
# Show the dialog
|
|
||||||
self.exec_()
|
|
||||||
|
|
||||||
def connection_type_bundled_toggled(self, checked):
|
def connection_type_bundled_toggled(self, checked):
|
||||||
"""
|
"""
|
||||||
Connection type bundled was toggled. If checked, hide authentication fields.
|
Connection type bundled was toggled. If checked, hide authentication fields.
|
||||||
@ -493,9 +492,11 @@ class SettingsDialog(QtWidgets.QDialog):
|
|||||||
common.log('SettingsDialog', 'save_clicked', 'Onion done rebooting, connected to Tor: {}'.format(self.onion.connected_to_tor))
|
common.log('SettingsDialog', 'save_clicked', 'Onion done rebooting, connected to Tor: {}'.format(self.onion.connected_to_tor))
|
||||||
|
|
||||||
if self.onion.connected_to_tor and not tor_con.wasCanceled():
|
if self.onion.connected_to_tor and not tor_con.wasCanceled():
|
||||||
|
self.settings_saved.emit()
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
self.settings_saved.emit()
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
def cancel_clicked(self):
|
def cancel_clicked(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user