summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2017-05-20 14:04:52 +1000
committerMiguel Jacq <mig@mig5.net>2017-05-20 14:04:52 +1000
commitaa7e609e14e79cbb2421b8450fa6aa3300877ee3 (patch)
tree6059f634fe26bef3d04f936f352e293236e52057
parent284679885874a9418ed4ada47bbff286b37968cf (diff)
downloadonionshare-aa7e609e14e79cbb2421b8450fa6aa3300877ee3.tar.gz
onionshare-aa7e609e14e79cbb2421b8450fa6aa3300877ee3.zip
move the help button to the left
-rw-r--r--onionshare_gui/settings_dialog.py2
1 files changed, 1 insertions, 1 deletions
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()