From: Hao Li Date: Thu, 16 Aug 2012 03:55:49 +0000 (+0800) Subject: opacity for MessageDialog { id: mesgDialog state: 'hidden' } will make dial page... X-Git-Tag: 1.0_branch^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2F1.0;p=profile%2Fivi%2Fhfdialer.git opacity for MessageDialog { id: mesgDialog state: 'hidden' } will make dial page main ui be disabled, change it visible true/false to fix TIVI-108 --- diff --git a/packaging/hfdialer.changes b/packaging/hfdialer.changes index 01b243d..fa6a4c8 100644 --- a/packaging/hfdialer.changes +++ b/packaging/hfdialer.changes @@ -1,3 +1,6 @@ +* Wed Aug 15 2012 Hao Li - 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 - 0.3.0 - make sure msisdn.lenth>=10 to avoid memory overflow and fix TZIVI-78 diff --git a/qml/AbstractDialog.qml b/qml/AbstractDialog.qml index 0f9adf2..fc05d61 100644 --- a/qml/AbstractDialog.qml +++ b/qml/AbstractDialog.qml @@ -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