opacity for MessageDialog { id: mesgDialog state: 'hidden' } will make dial page... 07/1007/1 1.0 1.0_branch submit/trunk/20120816.035834
authorHao Li <hao.h.li@intel.com>
Thu, 16 Aug 2012 03:55:49 +0000 (11:55 +0800)
committerHao Li <hao.h.li@intel.com>
Thu, 16 Aug 2012 03:55:49 +0000 (11:55 +0800)
packaging/hfdialer.changes
qml/AbstractDialog.qml

index 01b243d..fa6a4c8 100644 (file)
@@ -1,3 +1,6 @@
+* 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
 
index 0f9adf2..fc05d61 100644 (file)
@@ -19,15 +19,15 @@ Item {
     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