Page MenuHomePhorge

D94.1726794795.diff
No OneTemporary

D94.1726794795.diff

diff --git a/src/contents/ui/CreateRoomPage.qml b/src/contents/ui/CreateRoomPage.qml
--- a/src/contents/ui/CreateRoomPage.qml
+++ b/src/contents/ui/CreateRoomPage.qml
@@ -94,9 +94,12 @@
objectName: 'inviteUserItem_' + index
Layout.fillWidth: true
Layout.minimumWidth: Kirigami.Units.gridUnit * 10
- Label {
- objectName: 'inviteUserIdLabel'
- text: createRoomPage.inviteUserIds[index]
+ contentItem: RowLayout {
+ Label {
+ Layout.fillWidth: true
+ objectName: 'inviteUserIdLabel'
+ text: createRoomPage.inviteUserIds[index]
+ }
}
actions: [
diff --git a/src/contents/ui/RoomListViewItemDelegate.qml b/src/contents/ui/RoomListViewItemDelegate.qml
--- a/src/contents/ui/RoomListViewItemDelegate.qml
+++ b/src/contents/ui/RoomListViewItemDelegate.qml
@@ -43,7 +43,7 @@
color: hovered ? Kirigami.Theme.hoverColor : Kirigami.Theme.backgroundColor
}
- RowLayout {
+ contentItem: RowLayout {
Kazv.AvatarAdapter {
sourceSize.width: iconSize
sourceSize.height: iconSize
@@ -78,6 +78,7 @@
Rectangle {
Layout.alignment: Qt.AlignRight
+ Layout.rightMargin: Kirigami.Units.largeSpacing
Layout.preferredWidth: Kirigami.Units.iconSizes.small
Layout.preferredHeight: Kirigami.Units.iconSizes.small
radius: Kirigami.Units.iconSizes.small / 2
diff --git a/src/contents/ui/RoomMemberListViewItemDelegate.qml b/src/contents/ui/RoomMemberListViewItemDelegate.qml
--- a/src/contents/ui/RoomMemberListViewItemDelegate.qml
+++ b/src/contents/ui/RoomMemberListViewItemDelegate.qml
@@ -21,7 +21,7 @@
property var displayName: nameProvider.name
property var iconSize
- RowLayout {
+ contentItem: RowLayout {
Kazv.AvatarAdapter {
sourceSize.width: iconSize
sourceSize.height: iconSize
diff --git a/src/contents/ui/device-mgmt/Device.qml b/src/contents/ui/device-mgmt/Device.qml
--- a/src/contents/ui/device-mgmt/Device.qml
+++ b/src/contents/ui/device-mgmt/Device.qml
@@ -15,7 +15,7 @@
property var item
property var userId
- RowLayout {
+ contentItem: RowLayout {
ColumnLayout {
Label {
objectName: 'deviceIdLabel'
diff --git a/src/contents/ui/room-settings/RoomSettingsPage.qml b/src/contents/ui/room-settings/RoomSettingsPage.qml
--- a/src/contents/ui/room-settings/RoomSettingsPage.qml
+++ b/src/contents/ui/room-settings/RoomSettingsPage.qml
@@ -123,8 +123,11 @@
Layout.minimumHeight: childrenRect.height
delegate: Kirigami.SwipeListItem {
required property var index
- Label {
- text: tagIdToName(customTagIds[index])
+ contentItem: RowLayout {
+ Label {
+ Layout.fillWidth: true
+ text: tagIdToName(customTagIds[index])
+ }
}
actions: [

File Metadata

Mime Type
text/plain
Expires
Thu, Sep 19, 6:13 PM (3 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16035
Default Alt Text
D94.1726794795.diff (2 KB)

Event Timeline