mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-15 16:47:25 -04:00
Generate proof from history view and made javascript file with tx related functions
This commit is contained in:
committed by
moneromooo-monero
parent
09935ba4b0
commit
70983136bc
@@ -38,7 +38,7 @@ import moneroComponents.TransactionHistoryModel 1.0
|
||||
import "../components"
|
||||
|
||||
Rectangle {
|
||||
id: root
|
||||
id: mainLayout
|
||||
property var model
|
||||
property int tableHeight: !isMobile ? table.contentHeight : tableMobile.contentHeight
|
||||
|
||||
@@ -321,7 +321,7 @@ Rectangle {
|
||||
id: table
|
||||
visible: !isMobile
|
||||
onContentYChanged: flickableScroll.flickableContentYChanged()
|
||||
model: !isMobile ? root.model : null
|
||||
model: !isMobile ? mainLayout.model : null
|
||||
addressBookModel: null
|
||||
|
||||
Layout.fillWidth: true
|
||||
@@ -332,7 +332,7 @@ Rectangle {
|
||||
id: tableMobile
|
||||
visible: isMobile
|
||||
onContentYChanged: flickableScroll.flickableContentYChanged()
|
||||
model: isMobile ? root.model : null
|
||||
model: isMobile ? mainLayout.model : null
|
||||
addressBookModel: null
|
||||
|
||||
Layout.fillWidth: true
|
||||
|
||||
Reference in New Issue
Block a user