summaryrefslogtreecommitdiffstats
path: root/framework/qml/ConversationView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/ConversationView.qml')
-rw-r--r--framework/qml/ConversationView.qml2
1 files changed, 2 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