Changeset View
Changeset View
Standalone View
Standalone View
src/contents/ui/Main.qml
| Show First 20 Lines • Show All 165 Lines • ▼ Show 20 Lines | actions: [ | ||||
| Kirigami.Action { | Kirigami.Action { | ||||
| objectName: 'join-room' | objectName: 'join-room' | ||||
| enabled: root.loggedIn | enabled: root.loggedIn | ||||
| text: l10n.get('global-drawer-action-join-room') | text: l10n.get('global-drawer-action-join-room') | ||||
| icon.name: 'list-add-user' | icon.name: 'list-add-user' | ||||
| onTriggered: { | onTriggered: { | ||||
| pushJoinRoomPage(); | pushJoinRoomPage(); | ||||
| } | } | ||||
| }, | |||||
| Kirigami.Action { | |||||
| objectName: 'aboutAction' | |||||
| text: l10n.get('global-drawer-action-about') | |||||
| icon.name: 'help-about' | |||||
| onTriggered: pageStack.pushDialogLayer(Qt.resolvedUrl('About.qml')) | |||||
| } | } | ||||
| ] | ] | ||||
| } | } | ||||
| contextDrawer: Kirigami.ContextDrawer { | contextDrawer: Kirigami.ContextDrawer { | ||||
| id: contextDrawer | id: contextDrawer | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 165 Lines • Show Last 20 Lines | |||||