1
0

Fix error of showing bitcoin paper(testnet)

This commit is contained in:
Jin Eguchi
2021-01-27 03:34:19 +09:00
committed by GitHub
parent d7515b936e
commit f548b63563

View File

@@ -766,7 +766,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
help_menu.addAction(_("&Official website"), lambda: webopen("https://electrum.org"))
help_menu.addSeparator()
help_menu.addAction(_("&Documentation"), lambda: webopen("http://docs.electrum.org/")).setShortcut(QKeySequence.HelpContents)
help_menu.addAction(_("&Bitcoin Paper"), self.show_bitcoin_paper)
if not constants.net.TESTNET:
help_menu.addAction(_("&Bitcoin Paper"), self.show_bitcoin_paper)
help_menu.addAction(_("&Report Bug"), self.show_report_bug)
help_menu.addSeparator()
help_menu.addAction(_("&Donate to server"), self.donate_to_server)