tRename 'On-chain' button, add tooltips (see #6053) - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit bfffc7cb1ec3372d771371b5731226d1a5c8bafa
 (DIR) parent 27949cb0e557085f205035fa67ef57fd71f650ac
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Sun, 12 Apr 2020 12:57:07 +0200
       
       Rename 'On-chain' button, add tooltips (see #6053)
       
       Diffstat:
         M electrum/gui/qt/main_window.py      |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py
       t@@ -1064,8 +1064,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
        
                self.clear_invoice_button = QPushButton(_('Clear'))
                self.clear_invoice_button.clicked.connect(self.clear_receive_tab)
       -        self.create_invoice_button = QPushButton(_('On-chain'))
       +        self.create_invoice_button = QPushButton(_('Request'))
                self.create_invoice_button.setIcon(read_QIcon("bitcoin.png"))
       +        self.create_invoice_button.setToolTip('Create on-chain request')
                self.create_invoice_button.clicked.connect(lambda: self.create_invoice(False))
                self.receive_buttons = buttons = QHBoxLayout()
                buttons.addStretch(1)
       t@@ -1073,6 +1074,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
                buttons.addWidget(self.create_invoice_button)
                if self.wallet.has_lightning():
                    self.create_lightning_invoice_button = QPushButton(_('Lightning'))
       +            self.create_lightning_invoice_button.setToolTip('Create lightning request')
                    self.create_lightning_invoice_button.setIcon(read_QIcon("lightning.png"))
                    self.create_lightning_invoice_button.clicked.connect(lambda: self.create_invoice(True))
                    buttons.addWidget(self.create_lightning_invoice_button)