diff options
Diffstat (limited to 'components/mailviewer/qml/HtmlContent.qml')
-rw-r--r-- | components/mailviewer/qml/HtmlContent.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/mailviewer/qml/HtmlContent.qml b/components/mailviewer/qml/HtmlContent.qml index f0249a01..c775a3ca 100644 --- a/components/mailviewer/qml/HtmlContent.qml +++ b/components/mailviewer/qml/HtmlContent.qml | |||
@@ -27,7 +27,10 @@ Item { | |||
27 | property string content | 27 | property string content |
28 | //We have to give it a minimum size so the html content starts to expand | 28 | //We have to give it a minimum size so the html content starts to expand |
29 | property int contentHeight: 10; | 29 | property int contentHeight: 10; |
30 | 30 | property string searchString | |
31 | onSearchStringChanged: { | ||
32 | htmlView.findText(searchString) | ||
33 | } | ||
31 | 34 | ||
32 | WebEngineView { | 35 | WebEngineView { |
33 | id: htmlView | 36 | id: htmlView |