chore: hide activity center button
This commit is contained in:
parent
815abdc226
commit
20bbf97787
|
@ -137,49 +137,49 @@ Item {
|
|||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
id: separator
|
||||
width: 1
|
||||
height: 24
|
||||
color: Style.current.separator
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
}
|
||||
// Rectangle {
|
||||
// id: separator
|
||||
// width: 1
|
||||
// height: 24
|
||||
// color: Style.current.separator
|
||||
// anchors.verticalCenter: parent.verticalCenter
|
||||
// }
|
||||
|
||||
StatusIconButton {
|
||||
id: activityCenterBtn
|
||||
icon.name: "bell"
|
||||
iconColor: Style.current.contextMenuButtonForegroundColor
|
||||
hoveredIconColor: Style.current.contextMenuButtonForegroundColor
|
||||
highlightedBackgroundColor: Style.current.contextMenuButtonBackgroundHoverColor
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
// StatusIconButton {
|
||||
// id: activityCenterBtn
|
||||
// icon.name: "bell"
|
||||
// iconColor: Style.current.contextMenuButtonForegroundColor
|
||||
// hoveredIconColor: Style.current.contextMenuButtonForegroundColor
|
||||
// highlightedBackgroundColor: Style.current.contextMenuButtonBackgroundHoverColor
|
||||
// anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
onClicked: activityCenter.open()
|
||||
// onClicked: activityCenter.open()
|
||||
|
||||
Rectangle {
|
||||
// TODO unhardcode this
|
||||
property int nbUnseenNotifs: 3
|
||||
// Rectangle {
|
||||
// // TODO unhardcode this
|
||||
// property int nbUnseenNotifs: 3
|
||||
|
||||
id: badge
|
||||
visible: nbUnseenNotifs > 0
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: -2
|
||||
anchors.left: parent.right
|
||||
anchors.leftMargin: -17
|
||||
radius: height / 2
|
||||
color: Style.current.blue
|
||||
border.color: activityCenterBtn.hovered ? Style.current.secondaryBackground : Style.current.background
|
||||
border.width: 2
|
||||
width: badge.nbUnseenNotifs < 10 ? 18 : badge.width + 14
|
||||
height: 18
|
||||
// id: badge
|
||||
// visible: nbUnseenNotifs > 0
|
||||
// anchors.top: parent.top
|
||||
// anchors.topMargin: -2
|
||||
// anchors.left: parent.right
|
||||
// anchors.leftMargin: -17
|
||||
// radius: height / 2
|
||||
// color: Style.current.blue
|
||||
// border.color: activityCenterBtn.hovered ? Style.current.secondaryBackground : Style.current.background
|
||||
// border.width: 2
|
||||
// width: badge.nbUnseenNotifs < 10 ? 18 : badge.width + 14
|
||||
// height: 18
|
||||
|
||||
Text {
|
||||
font.pixelSize: 12
|
||||
color: Style.current.white
|
||||
anchors.centerIn: parent
|
||||
text: badge.nbUnseenNotifs
|
||||
}
|
||||
}
|
||||
}
|
||||
// Text {
|
||||
// font.pixelSize: 12
|
||||
// color: Style.current.white
|
||||
// anchors.centerIn: parent
|
||||
// text: badge.nbUnseenNotifs
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
ActivityCenter {
|
||||
|
|
Loading…
Reference in New Issue