summary refs log tree commit diff
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2022-11-09 03:03:52 +0100
committerGitHub <noreply@github.com>2022-11-09 03:03:52 +0100
commit0cc1c6eddc272dcf21f6e3379b07c07a383e5083 (patch)
tree84ff0f72045642ec37dae35d5865c88b34b7f93b
parentTry to fix clang-tidy (diff)
parentAdd room settings in room list (diff)
downloadnheko-0cc1c6eddc272dcf21f6e3379b07c07a383e5083.tar.xz
Merge pull request #1224 from Nheko-Reborn/settingsfromroomlist
Get room settings from room list
-rw-r--r--resources/qml/RoomList.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml

index b64df669..97639baa 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml
@@ -160,6 +160,11 @@ Page { } Platform.MenuItem { + text: qsTr("Room settings") + onTriggered: TimelineManager.openRoomSettings(roomContextMenu.roomid) + } + + Platform.MenuItem { text: qsTr("Leave room") onTriggered: TimelineManager.openLeaveRoomDialog(roomContextMenu.roomid) }