mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-13 11:56:32 +02:00
DatePicker: 'error' property for indicating invalid input
This commit is contained in:
parent
ead7ac8686
commit
69b4d461c8
@ -35,6 +35,10 @@ Item {
|
||||
property bool expanded: false
|
||||
property date currentDate
|
||||
property bool showCurrentDate: true
|
||||
property color backgroundColor : "#FFFFFF"
|
||||
property color errorColor : "#FFDDDD"
|
||||
property bool error: false
|
||||
|
||||
height: 37
|
||||
width: 156
|
||||
|
||||
@ -56,7 +60,6 @@ Item {
|
||||
Item {
|
||||
id: head
|
||||
anchors.fill: parent
|
||||
|
||||
Rectangle {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
@ -64,6 +67,7 @@ Item {
|
||||
//radius: 4
|
||||
y: 0
|
||||
color: "#DBDBDB"
|
||||
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
@ -74,7 +78,7 @@ Item {
|
||||
anchors.rightMargin: datePicker.expanded ? 1 : 0
|
||||
//radius: 4
|
||||
y: 1
|
||||
color: "#FFFFFF"
|
||||
color: datePicker.error ? datePicker.errorColor : datePicker.backgroundColor
|
||||
}
|
||||
|
||||
Item {
|
||||
|
Loading…
Reference in New Issue
Block a user