mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 23:05:17 +00:00
6743bee1aa
It removes duplication and unifies menu items across the app. fixes: #5985
11 lines
188 B
QML
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"
|
|
}
|