From b9a129ecd25fc3baadd0ecc053674594ee458570 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 22 Oct 2022 15:06:38 -0500 Subject: [PATCH] fixing library scrollbar --- src/qml/presenter/Library.qml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/qml/presenter/Library.qml b/src/qml/presenter/Library.qml index 339ab07..c5af21d 100644 --- a/src/qml/presenter/Library.qml +++ b/src/qml/presenter/Library.qml @@ -1,5 +1,5 @@ import QtQuick 2.13 -import QtQuick.Controls 2.0 as Controls +import QtQuick.Controls 2.15 as Controls import QtQuick.Layouts 1.2 import Qt.labs.platform 1.1 as Labs import org.kde.kirigami 2.13 as Kirigami @@ -273,7 +273,8 @@ Item { Controls.ScrollBar.vertical: Controls.ScrollBar { anchors.right: songLibraryList.right - anchors.leftMargin: 10 + /* anchors.leftMargin: 10 */ + /* anchors.left: songLibraryList.right */ active: hovered || pressed } @@ -485,6 +486,14 @@ Item { } } } + + Controls.ScrollBar.vertical: Controls.ScrollBar { + anchors.right: videoLibraryList.right + /* anchors.leftMargin: 10 */ + /* anchors.left: videoLibraryList.right */ + active: hovered || pressed + } + } Rectangle {