1
0

kivy: add title to do_share

This commit is contained in:
ThomasV
2016-06-16 09:47:31 +02:00
parent 7c42957a7c
commit 362e4be6f0
3 changed files with 4 additions and 4 deletions

View File

@@ -587,7 +587,7 @@ class ShowXpubDialog(WizardDialog):
self.app._clipboard.copy(self.xpub)
def do_share(self):
self.app.do_share(self.xpub)
self.app.do_share(self.xpub, _("Master Public Key"))
def do_qr(self):
from qr_dialog import QRDialog

View File

@@ -358,7 +358,7 @@ class ReceiveScreen(CScreen):
def do_share(self):
uri = self.get_URI()
self.app.do_share(uri)
self.app.do_share(uri, _("Share Bitcoin Request"))
def do_copy(self):
uri = self.get_URI()