+* Wed Aug 15 2012 Hao Li <hao.h.li@intel.com> - 0.3.0
+- opacity for MessageDialog { id: mesgDialog state: 'hidden' } will make dial page main ui be disabled, change it visible true/false to fix TIVI-108
+
* Tue Jul 17 2012 Hao Li <hao.h.li@intel.com> - 0.3.0
- make sure msisdn.lenth>=10 to avoid memory overflow and fix TZIVI-78
states: [
State {
name: 'shown'
- PropertyChanges {target: root; opacity: 1.0}
+ PropertyChanges {target: root; visible: true}
},
State {
name: 'hidden'
- PropertyChanges {target: root; opacity: 0.0}
+ PropertyChanges {target: root; visible: false}
}
]
- Behavior on opacity {PropertyAnimation {duration: 250}}
+ Behavior on visible {PropertyAnimation {duration: 250}}
Rectangle {
id: blind