From a2c7deac70bff5e393e07c18a8dcc6b041164086 Mon Sep 17 00:00:00 2001 From: David Turner Date: Mon, 16 Oct 2023 15:36:17 +0100 Subject: [PATCH] Remove padding from progress bar Seems like there's a weird Qt bug in the ProgressBar widget where giving it padding means the white progress indicator doesn't actually start at the left edge of the bar or extend to the right edge of the bar. So just remove the padding from ProgressBar because it's not doing much. --- src/main.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.qml b/src/main.qml index a42428b..49bbb82 100644 --- a/src/main.qml +++ b/src/main.qml @@ -237,7 +237,6 @@ ApplicationWindow { ProgressBar { Layout.bottomMargin: 25 - padding: 5 id: progressBar Layout.fillWidth: true visible: false