Fix not being able to view the DM's profile
This button was broken for a while, so now that's fixed.
This commit is contained in:
@@ -6,8 +6,9 @@ import QtQuick
|
|||||||
import QtQuick.Controls as QQC2
|
import QtQuick.Controls as QQC2
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import org.kde.kirigami as Kirigami
|
import org.kde.kirigami as Kirigami
|
||||||
import org.kde.kirigamiaddons.labs.components as KirigamiComponents
|
import org.kde.kirigamiaddons.components as KirigamiComponents
|
||||||
|
|
||||||
|
import org.kde.neochat
|
||||||
import org.kde.neochat.libneochat
|
import org.kde.neochat.libneochat
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
@@ -29,18 +30,15 @@ ColumnLayout {
|
|||||||
Layout.preferredHeight: Kirigami.Units.largeSpacing * 2
|
Layout.preferredHeight: Kirigami.Units.largeSpacing * 2
|
||||||
}
|
}
|
||||||
|
|
||||||
QQC2.AbstractButton {
|
KirigamiComponents.AvatarButton {
|
||||||
|
name: root.room ? root.room.displayName : ""
|
||||||
|
source: root.room ? root.room.avatarMediaUrl : ""
|
||||||
|
|
||||||
Layout.preferredWidth: Math.round(Kirigami.Units.gridUnit * 3.5)
|
Layout.preferredWidth: Math.round(Kirigami.Units.gridUnit * 3.5)
|
||||||
Layout.preferredHeight: Math.round(Kirigami.Units.gridUnit * 3.5)
|
Layout.preferredHeight: Math.round(Kirigami.Units.gridUnit * 3.5)
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
|
||||||
onClicked: {
|
onClicked: RoomManager.resolveResource(root.room.directChatRemoteMember.id)
|
||||||
root.resolveResource(root.room.directChatRemoteMember.uri, "")
|
|
||||||
}
|
|
||||||
|
|
||||||
contentItem: KirigamiComponents.Avatar {
|
|
||||||
name: root.room ? root.room.displayName : ""
|
|
||||||
source: root.room ? root.room.avatarMediaUrl : ""
|
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
visible: root.room.usesEncryption
|
visible: root.room.usesEncryption
|
||||||
@@ -59,7 +57,6 @@ ColumnLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|||||||
Reference in New Issue
Block a user