Changeset View
Changeset View
Standalone View
Standalone View
src/contents/ui/room-settings/RoomSettingsPage.qml
| Show First 20 Lines • Show All 351 Lines • ▼ Show 20 Lines | Button { | ||||
| icon.name: 'list-add-user' | icon.name: 'list-add-user' | ||||
| Layout.fillWidth: true | Layout.fillWidth: true | ||||
| onClicked: { | onClicked: { | ||||
| activateRoomInvitePage(roomSettingsPage.room); | activateRoomInvitePage(roomSettingsPage.room); | ||||
| } | } | ||||
| } | } | ||||
| Button { | Button { | ||||
| text: l10n.get('room-explore-state-action') | |||||
| Layout.fillWidth: true | |||||
| onClicked: { | |||||
| activateRoomStatePage(roomSettingsPage.room); | |||||
| } | |||||
| } | |||||
| Button { | |||||
| objectName: 'leaveRoomButton' | objectName: 'leaveRoomButton' | ||||
| text: l10n.get('room-leave-action') | text: l10n.get('room-leave-action') | ||||
| icon.name: 'im-ban-kick-user' | icon.name: 'im-ban-kick-user' | ||||
| icon.color: Kirigami.Theme.negativeTextColor | icon.color: Kirigami.Theme.negativeTextColor | ||||
| Layout.fillWidth: true | Layout.fillWidth: true | ||||
| onClicked: { | onClicked: { | ||||
| confirmLeaveOverlay.open(); | confirmLeaveOverlay.open(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 58 Lines • Show Last 20 Lines | |||||