diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-12-27 00:53:21 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:02 +0100 |
| commit | cf2791a246c68bff6664843733ff661335db3d79 (patch) | |
| tree | 545a81d716cbb6be8725202dde0a908ce17d4722 /MiddlePanel.qml | |
| parent | c28d2daf20126a3293627fb250ca6356f092b130 (diff) | |
| download | monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.tar.gz monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.tar.xz monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.zip | |
New history page, including the mobile version.
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index bc1bc76c..62d1946c 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -49,6 +49,7 @@ Rectangle { property string unlockedBalanceLabelText: qsTr("Unlocked Balance") + translationManager.emptyString property string unlockedBalanceText property int minHeight: (appWindow.height > 800) ? appWindow.height : 800 * scaleRatio + property alias contentHeight: mainFlickable.contentHeight // property int headerHeight: header.height property Transfer transferView: Transfer { } @@ -111,7 +112,7 @@ Rectangle { name: "History" PropertyChanges { target: root; currentView: historyView } PropertyChanges { target: historyView; model: appWindow.currentWallet ? appWindow.currentWallet.historyModel : null } - PropertyChanges { target: mainFlickable; contentHeight: minHeight } + PropertyChanges { target: mainFlickable; contentHeight: historyView.tableHeight + 220 * scaleRatio } }, State { name: "Transfer" PropertyChanges { target: root; currentView: transferView } |
