diff --git a/src/tribler-gui/tribler_gui/qt_resources/mainwindow.ui b/src/tribler-gui/tribler_gui/qt_resources/mainwindow.ui index 3adcd940c0d..0e6a17afd83 100644 --- a/src/tribler-gui/tribler_gui/qt_resources/mainwindow.ui +++ b/src/tribler-gui/tribler_gui/qt_resources/mainwindow.ui @@ -2233,55 +2233,6 @@ color: white; 12 - - - - - 0 - 0 - - - - font-weight: bold; -color: white; - - - Anonymity - - - - - - - - - - Allow Tribler to be an exit node - - - - - - - - 0 - 0 - - - - - - - By allowing Tribler to be an exit node, your computer will act as a proxy for other Tribler users' bittorrent traffic, be it seeding or downloading. Check your local laws and make sure you are aware of the implications of enabling this checkbox. - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - true - - - diff --git a/src/tribler-gui/tribler_gui/widgets/settingspage.py b/src/tribler-gui/tribler_gui/widgets/settingspage.py index d69999202df..46175b67985 100644 --- a/src/tribler-gui/tribler_gui/widgets/settingspage.py +++ b/src/tribler-gui/tribler_gui/widgets/settingspage.py @@ -220,7 +220,6 @@ def initialize_with_settings(self, settings): self.window().seeding_ratio_combobox.setCurrentIndex(ind) # Anonymity settings - self.window().allow_exit_node_checkbox.setChecked(settings['tunnel_community']['exitnode_enabled']) self.window().number_hops_slider.setValue(int(settings['download_defaults']['number_hops'])) connect(self.window().number_hops_slider.valueChanged, self.update_anonymity_cost_label) self.update_anonymity_cost_label(int(settings['download_defaults']['number_hops'])) @@ -505,7 +504,7 @@ def save_settings(self, checked): ) return - settings_data['tunnel_community']['exitnode_enabled'] = self.window().allow_exit_node_checkbox.isChecked() + settings_data['tunnel_community']['exitnode_enabled'] = False settings_data['download_defaults']['number_hops'] = self.window().number_hops_slider.value() settings_data['download_defaults'][ 'anonymity_enabled'