diff options
Diffstat (limited to 'views/conversation/main.qml')
-rw-r--r-- | views/conversation/main.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/views/conversation/main.qml b/views/conversation/main.qml index 686aeecb..64f7f273 100644 --- a/views/conversation/main.qml +++ b/views/conversation/main.qml | |||
@@ -117,12 +117,26 @@ ApplicationWindow { | |||
117 | to: ["to@example.org"], | 117 | to: ["to@example.org"], |
118 | unread: true | 118 | unread: true |
119 | }, | 119 | }, |
120 | { | ||
121 | resource: "resource1", | ||
122 | date: "2017-07-20T17:46:29", | ||
123 | subject: "ComplexHTMLLongLine", | ||
124 | //We assume that @media trigger the complex html view | ||
125 | body: "<pre>Hi Mélanie,\n\nI'm sorry @media to start this on such late notice, but we'd like to get Foo and boo to woo next week, because the following weeks are unfortunately not possible for us.\n<pre>", | ||
126 | bodyIsHtml: true, | ||
127 | to: ["to@example.org"], | ||
128 | unread: true | ||
129 | }, | ||
120 | ] | 130 | ] |
121 | }], | 131 | }], |
122 | } | 132 | } |
123 | TestStore.setup(initialState) | 133 | TestStore.setup(initialState) |
124 | } | 134 | } |
125 | 135 | ||
136 | Shortcut { | ||
137 | onActivated: Kube.Fabric.postMessage(Kube.Messages.search, {}) | ||
138 | sequence: StandardKey.Find | ||
139 | } | ||
126 | View { | 140 | View { |
127 | anchors.fill: parent | 141 | anchors.fill: parent |
128 | } | 142 | } |