summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-11-21 01:10:28 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-11-21 01:10:38 +0100
commit081bd8d5f1fc9532a1283c92a687735c7fc9c840 (patch)
tree5346a7d58754eaa9d7df174ca32ec71eeeb2540b /resources
parentAdded translation using Weblate (Swedish) (diff)
downloadnheko-081bd8d5f1fc9532a1283c92a687735c7fc9c840.tar.xz
Add some padding between scrollbar and messages
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/MessageView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index af0c0aca..bc0acfa4 100644
--- a/resources/qml/MessageView.qml
+++ b/resources/qml/MessageView.qml
@@ -9,7 +9,7 @@ import im.nheko 1.0
 ListView {
     id: chat
 
-    property int delegateMaxWidth: (Settings.timelineMaxWidth > 100 && (parent.width - Settings.timelineMaxWidth) > scrollbar.width * 2) ? Settings.timelineMaxWidth : (parent.width - scrollbar.width * 2)
+    property int delegateMaxWidth: (Settings.timelineMaxWidth > 100 && (parent.width - Settings.timelineMaxWidth) > scrollbar.width * 2) ? Settings.timelineMaxWidth : (parent.width - scrollbar.width * 2 - 8)
 
     Layout.fillWidth: true
     Layout.fillHeight: true