summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2019-11-03 01:17:40 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2019-11-23 20:06:15 +0100
commit4f7a45a0a6b28255fb4c1ccbb53fcf8a6958843a (patch)
tree226eeb41532e78245e60d1ff997b7d03e7b2fb64 /resources/qml/TimelineView.qml
parentfixup bad room list translation commit (diff)
downloadnheko-4f7a45a0a6b28255fb4c1ccbb53fcf8a6958843a.tar.xz
Improve avatar look and layouting
Thanks to red_sky for the feedback!
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index e5c1bda6..8f64637e 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -14,7 +14,7 @@ Rectangle {
 	property var colors: currentActivePalette
 	property var systemInactive: SystemPalette { colorGroup: SystemPalette.Disabled }
 	property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive
-	property int avatarSize: 32
+	property int avatarSize: 40
 
 	color: colors.window
 
@@ -34,6 +34,9 @@ Rectangle {
 		visible: timelineManager.timeline != null
 		anchors.fill: parent
 
+		anchors.leftMargin: 4
+		anchors.rightMargin: scrollbar.width
+
 		model: timelineManager.timeline
 
 		onModelChanged: {
@@ -54,7 +57,7 @@ Rectangle {
 		ScrollBar.vertical: ScrollBar {
 			id: scrollbar
 			anchors.top: parent.top
-			anchors.right: parent.right
+			anchors.left: parent.right
 			anchors.bottom: parent.bottom
 			onPressedChanged: if (!pressed) chat.updatePosition()
 		}