Small tweaks.

This commit is contained in:
Black Hat
2018-07-24 12:37:48 +08:00
parent 845b0114bd
commit d60bd1ed9f
3 changed files with 4 additions and 5 deletions

View File

@@ -210,16 +210,13 @@ Item {
id: roomListMenu
MenuItem {
text: "Prioritize"
text: "Favourite"
onTriggered: roomListMenu.room.isFavourite ? roomListMenu.room.removeTag("m.favourite") : roomListMenu.room.addTag("m.favourite", "1")
}
MenuItem {
text: "Deprioritize"
onTriggered: roomListMenu.room.isLowPriority ? roomListMenu.room.removeTag("m.lowpriority") : roomListMenu.room.addTag("m.lowpriority", "1")
}
MenuItem {
text: "Direct Chat"
}
}
}
}