diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-10-25 11:46:25 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-23 20:06:15 +0100 |
commit | c8f97216faa74b9d3f1f92af7acc509dbe6b5647 (patch) | |
tree | aa9e68c03bc79800cb108bbb19654a75d7634d80 /resources/qml/RowDelegateChooser.qml | |
parent | Use a basic implementation of a DelegateChooser for compat with older Qt (diff) | |
download | nheko-c8f97216faa74b9d3f1f92af7acc509dbe6b5647.tar.xz |
Small fixes to delegate chooser implementation
Diffstat (limited to 'resources/qml/RowDelegateChooser.qml')
-rw-r--r-- | resources/qml/RowDelegateChooser.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/qml/RowDelegateChooser.qml b/resources/qml/RowDelegateChooser.qml index b7b6bdf4..bacd970a 100644 --- a/resources/qml/RowDelegateChooser.qml +++ b/resources/qml/RowDelegateChooser.qml @@ -5,7 +5,7 @@ import com.github.nheko 1.0 import "./delegates" DelegateChooser { - role: "type" + //role: "type" //< not supported in our custom implementation, have to use roleValue width: chat.width roleValue: model.type @@ -46,7 +46,6 @@ DelegateChooser { TimelineRow { view: chat; Redacted { id: kid } } } DelegateChoice { - //roleValue: MtxEvent.Redacted TimelineRow { view: chat; Placeholder { id: kid } } } } |