Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F112716
D94.1732343563.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D94.1732343563.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 22, 10:32 PM (14 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39173
Default Alt Text
D94.1732343563.diff (2 KB)
Attached To
Mode
D94: Fix styles for SwipeListItems
Attached
Detach File
Event Timeline
Log In to Comment