mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Modifications to member list buttons
This commit is contained in:
parent
a75ee1a618
commit
05e6dd9d0d
2 changed files with 14 additions and 12 deletions
|
@ -209,7 +209,6 @@ Item {
|
|||
|
||||
MatrixText {
|
||||
text: qsTr("%n member(s)", "", room ? room.roomMemberCount : 0)
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
}
|
||||
|
||||
ImageButton {
|
||||
|
|
|
@ -159,22 +159,25 @@ ApplicationWindow {
|
|||
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
spacing: Nheko.paddingMedium
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
|
||||
Label {
|
||||
text: qsTr("%n member(s)", "", roomSettings.memberCount)
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
color: Nheko.colors.text
|
||||
|
||||
TapHandler {
|
||||
onSingleTapped: TimelineManager.openRoomMembers(Rooms.getRoomById(roomSettings.roomId))
|
||||
}
|
||||
|
||||
CursorShape {
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
ImageButton {
|
||||
image: ":/icons/icons/ui/people.svg"
|
||||
hoverEnabled: true
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.text: qsTr("View members of %1").arg(roomSettings.roomName)
|
||||
onClicked: TimelineManager.openRoomMembers(Rooms.getRoomById(roomSettings.roomId))
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
TextArea {
|
||||
id: roomTopic
|
||||
property bool cut: implicitHeight > 100
|
||||
|
|
Loading…
Reference in a new issue