2022-06-10 11:12:03 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-06-10 11:12:03 +00:00
|
|
|
property bool muted: false
|
|
|
|
|
2022-09-27 21:26:26 +00:00
|
|
|
text: muted ? qsTr("Unmute Chat") : qsTr("Mute Chat")
|
2022-06-10 11:12:03 +00:00
|
|
|
icon.name: "notification"
|
|
|
|
}
|