fix(PinnedMessagesPopup): Force show repeat header
This commit is contained in:
parent
97436b6e26
commit
38353af413
|
@ -140,12 +140,6 @@ Control {
|
||||||
return Theme.palette.pinColor3;
|
return Theme.palette.pinColor3;
|
||||||
return "transparent";
|
return "transparent";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
contentItem: Item {
|
|
||||||
|
|
||||||
implicitWidth: messageLayout.implicitWidth
|
|
||||||
implicitHeight: messageLayout.implicitHeight
|
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors {
|
anchors {
|
||||||
|
@ -168,6 +162,13 @@ Control {
|
||||||
visible: root.hasMention
|
visible: root.hasMention
|
||||||
color: Theme.palette.mentionColor1
|
color: Theme.palette.mentionColor1
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
contentItem: Item {
|
||||||
|
|
||||||
|
implicitWidth: messageLayout.implicitWidth
|
||||||
|
implicitHeight: messageLayout.implicitHeight
|
||||||
|
|
||||||
|
|
||||||
SequentialAnimation {
|
SequentialAnimation {
|
||||||
id: messageFoundAnimation
|
id: messageFoundAnimation
|
||||||
|
|
|
@ -95,6 +95,7 @@ StatusDialog {
|
||||||
// Additional params
|
// Additional params
|
||||||
isInPinnedPopup: true
|
isInPinnedPopup: true
|
||||||
disableHover: !!root.messageToPin
|
disableHover: !!root.messageToPin
|
||||||
|
shouldRepeatHeader: true
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
Loading…
Reference in New Issue