hidden status for the shadow

This commit is contained in:
Marco Martin 2011-10-10 14:32:53 +02:00
parent d8a125d350
commit 34c3446a3e
2 changed files with 24 additions and 0 deletions

View File

@ -90,6 +90,18 @@ Item {
opacity: 1
prefix: "focus"
}
},
State {
name: "hidden"
PropertyChanges {
target: shadow
opacity: 0
}
PropertyChanges {
target: hover
opacity: 0
prefix: "hover"
}
}
]

View File

@ -85,6 +85,18 @@ Item {
opacity: 1
elementId: "focus"
}
},
State {
name: "hover"
PropertyChanges {
target: shadow
opacity: 0
}
PropertyChanges {
target: hover
opacity: 0
elementId: "hover"
}
}
]