forked from Public/monero-gui
This commit is contained in:
@@ -147,7 +147,7 @@ Rectangle {
|
|||||||
text: qsTr("<style type='text/css'>a {text-decoration: none; color: #6B0072; font-size: 14px;}</style>\
|
text: qsTr("<style type='text/css'>a {text-decoration: none; color: #6B0072; font-size: 14px;}</style>\
|
||||||
looking for <a href='#'>Advance filtering?</a>")
|
looking for <a href='#'>Advance filtering?</a>")
|
||||||
font.underline: false
|
font.underline: false
|
||||||
onLinkActivated: tableRect.height = tableRect.collapsedHeight
|
onLinkActivated: tableRect.height = Qt.binding(function(){ return tableRect.collapsedHeight })
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
@@ -245,7 +245,7 @@ Rectangle {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
onClicked: {
|
onClicked: {
|
||||||
parent.expanded = !parent.expanded
|
parent.expanded = !parent.expanded
|
||||||
tableRect.height = parent.expanded ? tableRect.expandedHeight : tableRect.middleHeight
|
tableRect.height = Qt.binding(function(){ return parent.expanded ? tableRect.expandedHeight : tableRect.middleHeight })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user