diff --git a/electrum/gui/qt/wizard/server_connect.py b/electrum/gui/qt/wizard/server_connect.py index 2cf3cdd02..acfdb9015 100644 --- a/electrum/gui/qt/wizard/server_connect.py +++ b/electrum/gui/qt/wizard/server_connect.py @@ -38,13 +38,9 @@ class WCWelcome(WizardComponent): WizardComponent.__init__(self, parent, wizard, title='Network Configuration') self.wizard_title = _('Electrum Bitcoin Wallet') - self.help_label = QLabel() - self.help_label.setText("\n".join([ - _("Optional settings to customize your network connection."), - _("If you are unsure what this is, leave them unchecked and Electrum will automatically " - "select servers."), - ])) - self.help_label.setWordWrap(True) + self.first_help_label = QLabel() + self.first_help_label.setText(_("Optional settings to customize your network connection") + ":") + self.first_help_label.setWordWrap(True) self.config_proxy_w = QCheckBox(_('Configure Proxy')) self.config_proxy_w.setChecked(False) @@ -59,9 +55,17 @@ class WCWelcome(WizardComponent): vbox.addStretch(1) options_w.setLayout(vbox) - self.layout().addWidget(self.help_label) + self.second_help_label = QLabel() + self.second_help_label.setText( + _("If you are unsure what this is, leave them unchecked and Electrum will " + "automatically select servers.") + ) + self.second_help_label.setWordWrap(True) + + self.layout().addWidget(self.first_help_label) self.layout().addSpacing(30) - self.layout().addWidget(options_w, False, Qt.AlignmentFlag.AlignLeft) + self.layout().addWidget(options_w) + self.layout().addWidget(self.second_help_label) self._valid = True def apply(self): diff --git a/electrum/gui/qt/wizard/terms_of_use.py b/electrum/gui/qt/wizard/terms_of_use.py index 33dfa0659..33b618fe9 100644 --- a/electrum/gui/qt/wizard/terms_of_use.py +++ b/electrum/gui/qt/wizard/terms_of_use.py @@ -47,6 +47,7 @@ class WCTermsOfUseScreen(WizardComponent): hbox_img.addStretch(1) self.layout().addLayout(hbox_img) + self.layout().addSpacing(15) self.tos_label = WWLabel() self.tos_label.setText(messages.MSG_TERMS_OF_USE)