mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Add close button and room open button to room directory dialog
This commit is contained in:
parent
03be9e479a
commit
b6f71a8bc2
1 changed files with 23 additions and 3 deletions
|
@ -112,9 +112,17 @@ ApplicationWindow {
|
|||
Layout.row: 1
|
||||
Layout.column: 1
|
||||
id: joinRoomButton
|
||||
enabled: model.canJoin
|
||||
text: "Join"
|
||||
onClicked: publicRooms.joinRoom(model.index)
|
||||
enabled: model.roomid !== ""
|
||||
text: model.canJoin ? qsTr("Join") : qsTr("Open")
|
||||
onClicked: {
|
||||
if (model.canJoin)
|
||||
publicRooms.joinRoom(model.index);
|
||||
else
|
||||
{
|
||||
Rooms.setCurrentRoom(model.roomid);
|
||||
roomDirectoryWindow.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -184,4 +192,16 @@ ApplicationWindow {
|
|||
|
||||
}
|
||||
|
||||
footer: RowLayout {
|
||||
spacing: Nheko.paddingMedium
|
||||
width: parent.width
|
||||
|
||||
Button {
|
||||
text: qsTr("Close")
|
||||
onClicked: roomDirectoryWindow.close()
|
||||
Layout.alignment: Qt.AlignRight
|
||||
Layout.margins: Nheko.paddingMedium
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue