mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
This commit is contained in:
parent
c26e1376db
commit
ce7e7fd38a
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ Rectangle {
|
|||
text: qsTr("<style type='text/css'>a {text-decoration: none; color: #6B0072; font-size: 14px;}</style>\
|
||||
looking for <a href='#'>Advance filtering?</a>")
|
||||
font.underline: false
|
||||
onLinkActivated: tableRect.height = tableRect.collapsedHeight
|
||||
onLinkActivated: tableRect.height = Qt.binding(function(){ return tableRect.collapsedHeight })
|
||||
}
|
||||
|
||||
Label {
|
||||
|
@ -245,7 +245,7 @@ Rectangle {
|
|||
anchors.fill: parent
|
||||
onClicked: {
|
||||
parent.expanded = !parent.expanded
|
||||
tableRect.height = parent.expanded ? tableRect.expandedHeight : tableRect.middleHeight
|
||||
tableRect.height = Qt.binding(function(){ return parent.expanded ? tableRect.expandedHeight : tableRect.middleHeight })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue