AddressBook: hide 'Add' form when invoked from 'Send' tab

This commit is contained in:
xiphon
2019-01-15 16:48:22 +00:00
parent 36eb1f80e1
commit b758c799d4
3 changed files with 37 additions and 18 deletions

View File

@@ -213,7 +213,10 @@ Rectangle {
placeholderText: "4.. / 8.."
wrapMode: Text.WrapAnywhere
addressValidation: true
onInputLabelLinkActivated: { appWindow.showPageRequest("AddressBook") }
onInputLabelLinkActivated: {
middlePanel.addressBookView.selectAndSend = true;
appWindow.showPageRequest("AddressBook");
}
pasteButton: true
onPaste: function(clipboardText) {
const parsed = walletManager.parse_uri_to_object(clipboardText);