From 6b9d12e369f2c78b52482831d4ff3450acb9a8a0 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 7 Feb 2016 17:51:56 +0900 Subject: [PATCH] Tweak tooltip --- gui/qt/main_window.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 7f74487d6..805e0dd2a 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2805,7 +2805,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): multiple_cb = QCheckBox(_('Use multiple change addresses')) multiple_cb.setEnabled(self.wallet.use_change) multiple_cb.setToolTip('\n'.join([ - _('In some cases, use up to 3 change addresses in order to obfuscate the recipient address.'), + _('In some cases, use up to 3 change addresses in order to break ' + 'up large coin amounts and obfuscate the recipient address.'), _('This may result in higher transactions fees.') ])) multiple_cb.setChecked(multiple_change)