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.
This commit is contained in:
David Turner 2023-10-16 15:36:17 +01:00
parent f28b9d0d77
commit a2c7deac70

View file

@ -237,7 +237,6 @@ ApplicationWindow {
ProgressBar { ProgressBar {
Layout.bottomMargin: 25 Layout.bottomMargin: 25
padding: 5
id: progressBar id: progressBar
Layout.fillWidth: true Layout.fillWidth: true
visible: false visible: false