diff options
Diffstat (limited to 'framework/qml')
-rw-r--r-- | framework/qml/ConversationView.qml | 2 | ||||
-rw-r--r-- | framework/qml/MailViewer.qml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/framework/qml/ConversationView.qml b/framework/qml/ConversationView.qml index 4df7dfa0..e1e93b66 100644 --- a/framework/qml/ConversationView.qml +++ b/framework/qml/ConversationView.qml | |||
@@ -32,6 +32,7 @@ FocusScope { | |||
32 | property bool hideTrash: true; | 32 | property bool hideTrash: true; |
33 | property bool hideNonTrash: false; | 33 | property bool hideNonTrash: false; |
34 | property string searchString: "" | 34 | property string searchString: "" |
35 | property bool autoLoadImages: true | ||
35 | 36 | ||
36 | Kube.Listener { | 37 | Kube.Listener { |
37 | filter: Kube.Messages.searchString | 38 | filter: Kube.Messages.searchString |
@@ -143,6 +144,7 @@ FocusScope { | |||
143 | incomplete: model.incomplete | 144 | incomplete: model.incomplete |
144 | current: delegateRoot.isCurrentItem | 145 | current: delegateRoot.isCurrentItem |
145 | searchString: root.searchString | 146 | searchString: root.searchString |
147 | autoLoadImages: root.autoLoadImages | ||
146 | } | 148 | } |
147 | } | 149 | } |
148 | 150 | ||
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index d18ed8e6..a43c99e9 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -43,6 +43,7 @@ Rectangle { | |||
43 | property bool current: false; | 43 | property bool current: false; |
44 | property bool unread; | 44 | property bool unread; |
45 | property alias searchString: mailViewer.searchString | 45 | property alias searchString: mailViewer.searchString |
46 | property alias autoLoadImages: mailViewer.autoLoadImages | ||
46 | 47 | ||
47 | implicitHeight: header.height + attachments.height + body.height + incompleteBody.height + footer.height + Kube.Units.largeSpacing | 48 | implicitHeight: header.height + attachments.height + body.height + incompleteBody.height + footer.height + Kube.Units.largeSpacing |
48 | 49 | ||