Fix undefined reference in Bubble
This tends to spam the logs while loading/unloading timelines.
(cherry picked from commit 318432d561)
This commit is contained in:
@@ -117,7 +117,7 @@ QQC2.Control {
|
|||||||
visible: root.showBackground
|
visible: root.showBackground
|
||||||
Kirigami.Theme.colorSet: Kirigami.Theme.View
|
Kirigami.Theme.colorSet: Kirigami.Theme.View
|
||||||
Kirigami.Theme.inherit: false
|
Kirigami.Theme.inherit: false
|
||||||
color: if (root.author.isLocalMember && !root.isThreaded) {
|
color: if ((root.author?.isLocalMember ?? false) && !root.isThreaded) {
|
||||||
return Kirigami.ColorUtils.tintWithAlpha(Kirigami.Theme.backgroundColor, Kirigami.Theme.highlightColor, 0.15);
|
return Kirigami.ColorUtils.tintWithAlpha(Kirigami.Theme.backgroundColor, Kirigami.Theme.highlightColor, 0.15);
|
||||||
} else if (root.showHighlight) {
|
} else if (root.showHighlight) {
|
||||||
return Kirigami.Theme.positiveBackgroundColor;
|
return Kirigami.Theme.positiveBackgroundColor;
|
||||||
|
|||||||
Reference in New Issue
Block a user