mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-07 04:06:02 +00:00
0c2674e7cb
After this change there is not need to pass sendModal instance from AppMain to other parts of app. Then SendModal should be launched simply by calling Global.openSendModal(....)
19 lines
420 B
QML
19 lines
420 B
QML
import QtQuick 2.13
|
|
|
|
RightTabBaseView {
|
|
id: root
|
|
|
|
signal sendToAddressRequested(string address)
|
|
|
|
SavedAddresses {
|
|
objectName: "savedAddressesArea"
|
|
width: root.width
|
|
height: root.height - header.height
|
|
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
|
|
onSendToAddressRequested: root.sendToAddressRequested(address)
|
|
}
|
|
}
|