diff options
-rw-r--r-- | framework/qml/Icons.qml | 2 | ||||
-rw-r--r-- | framework/qml/MailViewer.qml | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/framework/qml/Icons.qml b/framework/qml/Icons.qml index bacaadfa..6f0a8652 100644 --- a/framework/qml/Icons.qml +++ b/framework/qml/Icons.qml | |||
@@ -52,7 +52,7 @@ Item { | |||
52 | property string goBack_inverted: "go-previous-inverted" | 52 | property string goBack_inverted: "go-previous-inverted" |
53 | property string goDown: "go-down" | 53 | property string goDown: "go-down" |
54 | property string goDown_inverted: "go-down-inverted" | 54 | property string goDown_inverted: "go-down-inverted" |
55 | property string goUp: "go-down" | 55 | property string goUp: "go-up" |
56 | 56 | ||
57 | property string addNew: "list-add" | 57 | property string addNew: "list-add" |
58 | property string remove: "kube-list-remove-inverted" | 58 | property string remove: "kube-list-remove-inverted" |
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index 6ad8c760..1df3c62d 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -88,8 +88,8 @@ Rectangle { | |||
88 | PropertyChanges { target: subject; wrapMode: Text.WrapAnywhere} | 88 | PropertyChanges { target: subject; wrapMode: Text.WrapAnywhere} |
89 | PropertyChanges { target: recipients; visible: false} | 89 | PropertyChanges { target: recipients; visible: false} |
90 | PropertyChanges { target: to; visible: true} | 90 | PropertyChanges { target: to; visible: true} |
91 | PropertyChanges { target: cc; visible: true} | 91 | PropertyChanges { target: cc; visible: root.cc} |
92 | PropertyChanges { target: bcc; visible: true} | 92 | PropertyChanges { target: bcc; visible: root.bcc} |
93 | } | 93 | } |
94 | ] | 94 | ] |
95 | 95 | ||
@@ -226,6 +226,7 @@ Rectangle { | |||
226 | 226 | ||
227 | height: Kube.Units.gridUnit | 227 | height: Kube.Units.gridUnit |
228 | width: height | 228 | width: height |
229 | visible: root.cc || root.bcc | ||
229 | 230 | ||
230 | color: Kube.Colors.backgroundColor | 231 | color: Kube.Colors.backgroundColor |
231 | 232 | ||