diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-28 14:24:05 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-28 14:24:05 +0700 |
commit | b10a21f0719ee39096e0b618627fb58f8dba06d2 (patch) | |
tree | 672e25366727627aacff9f83a67f06c69fabada7 /pages/EmailForm.ui.qml | |
parent | 32e38e39a5a283a04b275fbf14b8d20dc40caab5 (diff) |
remove unused Rectangle height and width
Diffstat (limited to 'pages/EmailForm.ui.qml')
-rw-r--r-- | pages/EmailForm.ui.qml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index d9b3b95..f4ab07e 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -4,8 +4,6 @@ import QtQuick.Controls 2.12 Rectangle { id: rectangle - width: 363 - height: 628 color: "#fff" border.width: 0 @@ -34,6 +32,9 @@ Rectangle { icon.color: "transparent" background: Rectangle { + opacity: enabled ? 1.0 : 0.3 + color: backButton.down ? "#ddd" : "#fff" + radius: 6 } } } @@ -111,3 +112,8 @@ Rectangle { } } } + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ |