Skip to content
Snippets Groups Projects
Commit 8b6d4a57 authored by Malte E's avatar Malte E
Browse files

another shot in the dark

parent 8b75d869
No related branches found
No related tags found
No related merge requests found
Pipeline #2673 passed
......@@ -33,7 +33,7 @@ Item {
anchors.fill: parent
property int delegateMaxWidth: ((Settings.timelineMaxWidth > 100 && Settings.timelineMaxWidth < chatRoot.availableWidth) ? Settings.timelineMaxWidth : chatRoot.availableWidth) - chatRoot.padding * 2 - (scrollbar.isTransient? 0 : scrollbar.width)
property int delegateMaxWidth: ((Settings.timelineMaxWidth > 100 && Settings.timelineMaxWidth < chatRoot.availableWidth) ? Settings.timelineMaxWidth : chatRoot.availableWidth) - chatRoot.padding * 2 - (scrollbar.interactive? scrollbar.width : 0)
displayMarginBeginning: height / 2
displayMarginEnd: height / 2
......@@ -53,7 +53,7 @@ Item {
ScrollBar.vertical: scrollbar
anchors.rightMargin: scrollbar.isTransient? 0 : scrollbar.width
anchors.rightMargin: scrollbar.interactive? scrollbar.width : 0
Rectangle {
//closePolicy: Popup.NoAutoClose
......
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