Skip to content
Snippets Groups Projects
Commit e09af0b1 authored by Loren Burkholder's avatar Loren Burkholder
Browse files

Nicer padding

parent f095352a
No related branches found
No related tags found
No related merge requests found
......@@ -98,14 +98,13 @@ ApplicationWindow {
Layout.fillWidth: true
Layout.fillHeight: true
model: invitees
spacing: Nheko.paddingMedium
delegate: ItemDelegate {
id: del
hoverEnabled: true
width: ListView.view.width
height: layout.implicitHeight
height: layout.implicitHeight + Nheko.paddingSmall * 2
onClicked: TimelineManager.openGlobalUserProfile(model.mxid)
background: Rectangle {
color: del.hovered ? Nheko.colors.dark : inviteDialogRoot.color
......@@ -115,6 +114,8 @@ ApplicationWindow {
id: layout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
width: Nheko.avatarSize
......
......@@ -54,7 +54,6 @@ ApplicationWindow {
id: readReceiptsList
clip: true
spacing: Nheko.paddingMedium
boundsBehavior: Flickable.StopAtBounds
model: readReceipts
......@@ -64,7 +63,7 @@ ApplicationWindow {
onClicked: room.openUserProfile(model.mxid)
padding: Nheko.paddingMedium
width: ListView.view.width
height: receiptLayout.implicitHeight
height: receiptLayout.implicitHeight + Nheko.paddingSmall * 2
hoverEnabled: true
ToolTip.visible: hovered
ToolTip.text: model.mxid
......@@ -76,6 +75,8 @@ ApplicationWindow {
id: receiptLayout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
width: Nheko.avatarSize
......
......@@ -75,7 +75,6 @@ ApplicationWindow {
id: memberList
clip: true
spacing: Nheko.paddingMedium
boundsBehavior: Flickable.StopAtBounds
model: members
......@@ -91,7 +90,7 @@ ApplicationWindow {
onClicked: Rooms.currentRoom.openUserProfile(model.mxid)
padding: Nheko.paddingMedium
width: ListView.view.width
height: memberLayout.implicitHeight
height: memberLayout.implicitHeight + Nheko.paddingSmall * 2
hoverEnabled: true
background: Rectangle {
color: del.hovered ? Nheko.colors.dark : roomMembersRoot.color
......@@ -101,6 +100,8 @@ ApplicationWindow {
id: memberLayout
spacing: Nheko.paddingMedium
anchors.verticalCenter: parent.verticalCenter
x: parent.x + Nheko.paddingSmall
Avatar {
id: avatar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment