Fix link color in reply delegate.
This commit is contained in:
parent
5fd5d0d9ea
commit
ae5154fd35
|
@ -162,7 +162,7 @@ ColumnLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
color: !sentByMe ? MPalette.foreground : "white"
|
color: !sentByMe ? MPalette.foreground : "white"
|
||||||
text: "<style>a{color: " + (darkBackground ? "white" : MPalette.foreground) + ";} .user-pill{}</style>" + (replyDisplay || "")
|
text: "<style>a{color: " + color + ";} .user-pill{}</style>" + (replyDisplay || "")
|
||||||
|
|
||||||
wrapMode: Label.Wrap
|
wrapMode: Label.Wrap
|
||||||
textFormat: Label.RichText
|
textFormat: Label.RichText
|
||||||
|
@ -191,7 +191,7 @@ ColumnLayout {
|
||||||
|
|
||||||
id: contentLabel
|
id: contentLabel
|
||||||
|
|
||||||
text: "<style>a{color: " + (darkBackground ? "white" : MPalette.foreground) + ";} .user-pill{}</style>" + display
|
text: "<style>a{color: " + color + ";} .user-pill{}</style>" + display
|
||||||
|
|
||||||
color: darkBackground ? "white" : MPalette.foreground
|
color: darkBackground ? "white" : MPalette.foreground
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue