Patryk Osmaczko 6743bee1aa fix(@desktop/chat): extract chat menu items
It removes duplication and unifies menu items across the app.

fixes: #5985
2022-06-15 12:56:32 -04:00

11 lines
188 B
QML

import QtQuick 2.14
import StatusQ.Popups 0.1
StatusMenuItem {
property bool muted: false
text: !muted ? qsTr("Mute chat") : qsTr("Unmute chat")
icon.name: "notification"
}