feat(ActivityCenter): AC topbar panel fixes

Close #7656 and #7635
This commit is contained in:
MishkaRogachev 2022-09-29 18:39:49 +04:00 committed by Mikhail Rogachev
parent 7d08c06524
commit 1784a98df3
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,6 @@ Item {
width: visible ? implicitWidth : 0
text: modelData.text
anchors.verticalCenter: parent.verticalCenter
height: 32
size: StatusBaseButton.Size.Small
highlighted: modelData.category == root.currentActivityCategory
onClicked: root.categoryTriggered(modelData.category)
@ -89,6 +88,7 @@ Item {
StatusToolTip {
visible: hideReadNotificationsBtn.hovered
offset: hideReadNotificationsBtn.width
text: root.hideReadNotifications ? qsTr("Show read notifications") : qsTr("Hide read notifications")
}
}