From 31dcf21a3ea8206ddbaf850584862e972ac08faf Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 28 Oct 2021 14:31:18 +0200 Subject: [PATCH] Disable horizontal scrollbar The layout of the plugin/material cards should take care of the text and rendering. The dimensions of these cards therefor should not require a horizontal scrollbar --- plugins/Marketplace/resources/qml/Plugins.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Marketplace/resources/qml/Plugins.qml b/plugins/Marketplace/resources/qml/Plugins.qml index dca1b8762b..0fbe8b7734 100644 --- a/plugins/Marketplace/resources/qml/Plugins.qml +++ b/plugins/Marketplace/resources/qml/Plugins.qml @@ -9,6 +9,7 @@ import UM 1.4 as UM ScrollView { clip: true + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff ListView { @@ -170,4 +171,4 @@ ScrollView } } } -} \ No newline at end of file +}