From 6f342733b38747161d76c03e4845731675161467 Mon Sep 17 00:00:00 2001 From: Hao Li Date: Thu, 16 Aug 2012 11:55:49 +0800 Subject: [PATCH] opacity for MessageDialog { id: mesgDialog state: 'hidden' } will make dial page main ui be disabled, change it visible true/false to fix TIVI-108 --- packaging/hfdialer.changes | 3 +++ qml/AbstractDialog.qml | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) 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 -- 2.7.4