Merge pull request #3538

ad38f15 DatePicker: date input with fixed size; longer animation; move up calendar rectangle (rating89us)
This commit is contained in:
luigi1111 2021-06-10 11:04:39 -05:00
commit 4850e13895
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -92,8 +92,8 @@ Item {
anchors.left: parent.left
anchors.right: parent.right
height: parent.height - 1
anchors.leftMargin: datePicker.expanded ? 1 : 0
anchors.rightMargin: datePicker.expanded ? 1 : 0
anchors.leftMargin: 0
anchors.rightMargin: 0
radius: 4
y: 1
color: datePicker.backgroundColor
@ -259,7 +259,7 @@ Item {
id: calendarRect
width: head.width
x: head.x
y: head.y + head.height + 10
y: head.y + head.height - 2
color: MoneroComponents.Style.middlePanelBackgroundColor
border.width: 1
@ -268,7 +268,7 @@ Item {
clip: true
Behavior on height {
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
NumberAnimation { duration: 150; easing.type: Easing.InQuad }
}
MouseArea {