Merge pull request #2164

96945c2 MiddlePanel: dynamic content height (selsta)
This commit is contained in:
luigi1111
2019-05-10 13:22:15 -05:00
6 changed files with 28 additions and 30 deletions

View File

@@ -44,6 +44,7 @@ import FontAwesome 1.0
Rectangle {
id: root
color: "transparent"
property alias addressbookHeight: mainLayout.height
property bool selectAndSend: false
property bool editEntry: false

View File

@@ -35,6 +35,7 @@ import moneroComponents.Wallet 1.0
Rectangle {
id: root
color: "transparent"
property alias miningHeight: mainLayout.height
property double currentHashRate: 0
ColumnLayout {

View File

@@ -37,6 +37,7 @@ import moneroComponents.WalletManager 1.0
import "../components" as MoneroComponents
Rectangle {
property alias signHeight: mainLayout.height
property bool messageMode: true
property bool fileMode: false

View File

@@ -47,6 +47,8 @@ Rectangle {
signal sweepUnmixableClicked()
color: "transparent"
property alias transferHeight1: pageRoot.height
property alias transferHeight2: advancedLayout.height
property int mixin: 10 // (ring size 11)
property string warningContent: ""
property string sendButtonWarning: ""
@@ -435,15 +437,8 @@ Rectangle {
} // pageRoot
Rectangle {
id: desaturate
color:"black"
anchors.fill: parent
opacity: 0.1
visible: (pageRoot.enabled)? 0 : 1;
}
ColumnLayout {
id: advancedLayout
anchors.top: pageRoot.bottom
anchors.left: parent.left
anchors.right: parent.right

View File

@@ -37,8 +37,8 @@ import moneroComponents.Clipboard 1.0
import "../js/TxUtils.js" as TxUtils
Rectangle {
color: "transparent"
property alias txkeyHeight: mainLayout.height
Clipboard { id: clipboard }