diff --git a/Modules/ControlCenter/Cards/MediaCard.qml b/Modules/ControlCenter/Cards/MediaCard.qml index 24de6066e..cb825e2de 100644 --- a/Modules/ControlCenter/Cards/MediaCard.qml +++ b/Modules/ControlCenter/Cards/MediaCard.qml @@ -174,6 +174,7 @@ NBox { id: playerContextMenu parent: root width: 200 + verticalPolicy: ScrollBar.AlwaysOff onTriggered: function (action) { var index = parseInt(action) diff --git a/README.md b/README.md index 6a95fd225..0480a3c90 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ While all donations are greatly appreciated, they are completely voluntary. * LionHeartP * Nyxion ツ * MrDowntempo +* Tempus Thales --- diff --git a/Widgets/NContextMenu.qml b/Widgets/NContextMenu.qml index cbfca5a0a..45b55aed2 100644 --- a/Widgets/NContextMenu.qml +++ b/Widgets/NContextMenu.qml @@ -10,6 +10,8 @@ Popup { property alias model: listView.model property real itemHeight: 36 property real itemPadding: Style.marginM + property int verticalPolicy: ScrollBar.AsNeeded + property int horizontalPolicy: ScrollBar.AsNeeded signal triggered(string action) @@ -31,6 +33,8 @@ Popup { implicitHeight: contentHeight spacing: Style.marginXXS interactive: contentHeight > root.height + verticalPolicy: root.verticalPolicy + horizontalPolicy: root.horizontalPolicy delegate: ItemDelegate { id: menuItem