diff options
author | link2xt <link2xt@testrun.org> | 2021-03-16 03:34:37 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-19 03:13:33 +0300 |
commit | 3158d4ce95cf8e8a1884cf795de41bee16bef3d5 (patch) | |
tree | cfb4c5dd44403617adf33fa8044d90e69a1fe6a5 /qml/Message.qml | |
parent | bb9cf9564f9933928ded677809ccd8f9b0980d12 (diff) | |
download | kdeltachat-3158d4ce95cf8e8a1884cf795de41bee16bef3d5.tar.gz kdeltachat-3158d4ce95cf8e8a1884cf795de41bee16bef3d5.zip |
Fix some qmllint warnings
Diffstat (limited to 'qml/Message.qml')
-rw-r--r-- | qml/Message.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/Message.qml b/qml/Message.qml index 7e12996..2c67cff 100644 --- a/qml/Message.qml +++ b/qml/Message.qml @@ -132,7 +132,7 @@ RowLayout { spacing: Kirigami.Units.smallSpacing Rectangle { width: Kirigami.Units.smallSpacing - color: quoteFrom ? quoteFrom.color : "black" + color: messageObject.quoteFrom ? messageObject.quoteFrom.color : "black" Layout.fillHeight: true } TextEdit { |