From 53f41408b801547e952a5fc0a073011fb6deb01c Mon Sep 17 00:00:00 2001 From: Cyril Anisimov Date: Fri, 13 Dec 2024 22:09:37 +0100 Subject: [PATCH] Scrollbar is on if the content is larger than a screen --- client/ui/qml/Controls2/ScrollBarType.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/qml/Controls2/ScrollBarType.qml b/client/ui/qml/Controls2/ScrollBarType.qml index d91431ab..0e5d244e 100644 --- a/client/ui/qml/Controls2/ScrollBarType.qml +++ b/client/ui/qml/Controls2/ScrollBarType.qml @@ -7,5 +7,5 @@ import "../Controls2" ScrollBar { id: root - policy: ScrollBar.AsNeeded + policy: ScrollBar.AlwaysOn }