From b29b9949f3405505f2b1f768deb0088476c0ea23 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sat, 20 May 2017 14:04:52 +1000 Subject: [PATCH] move the help button to the left --- onionshare_gui/settings_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionshare_gui/settings_dialog.py b/onionshare_gui/settings_dialog.py index 64e47dd4..5086477f 100644 --- a/onionshare_gui/settings_dialog.py +++ b/onionshare_gui/settings_dialog.py @@ -216,10 +216,10 @@ class SettingsDialog(QtWidgets.QDialog): self.help_button = QtWidgets.QPushButton(strings._('gui_settings_button_help', True)) self.help_button.clicked.connect(self.help_clicked) buttons_layout = QtWidgets.QHBoxLayout() + buttons_layout.addWidget(self.help_button) buttons_layout.addStretch() buttons_layout.addWidget(self.save_button) buttons_layout.addWidget(self.cancel_button) - buttons_layout.addWidget(self.help_button) # Tor network connection status self.tor_status = QtWidgets.QLabel()