From 55bdb81e785bf9fa94e419076cca58b55a74334a Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 12 Jul 2021 11:13:06 +0200 Subject: [PATCH] Reduce margins of options in the open file drop-down This was a desire from the developer. It shouldn't be consistent with the printer selector. The margins being all the same is more important. Contributes to issue CURA-8008. --- plugins/PrepareStage/PrepareMenu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index 5126d0aba6..061db0b8f6 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -138,8 +138,8 @@ Item model: prepareMenu.fileProviderModel delegate: Button { - leftPadding: UM.Theme.getSize("thick_margin").width - rightPadding: UM.Theme.getSize("thick_margin").width + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width width: contentItem.width + leftPadding + rightPadding height: UM.Theme.getSize("action_button").height hoverEnabled: true