Created attachment 150512 [details] screen recording STEPS TO REPRODUCE 1. compress a large file to tar.gz format with Ark 2. 3. OBSERVED RESULT as we can observe in the attached screen recording, the ping-pong 'progress' bar does not move to rightmost position EXPECTED RESULT the ping-pong 'progress' bar moves to rightmost position SOFTWARE/OS VERSIONS Operating System: KDE neon Unstable Edition KDE Plasma Version: 5.25.80 KDE Frameworks Version: 5.97.0 Qt Version: 5.15.5 Graphics Platform: Wayland
Can reproduce in the notification when I compress a large file (not a folder) from Dolphin's context menu. Cannot reproduce in the progressbar3.qml test in plasma-framework, so it looks like it may be specific to the notification.
The progressbar is probably resizing for a split frame (note how the job in the video doesn't have the usual "pause" button), so the animation still goes to the old coordinates. PC3 bug.
Can confirm. Indeterminate progress bar can change width of a bouncing handle, but not the right extent mid-flight. Probably has to do something with Animation types not reacting to changes while running. Very typical QtQuick bug. Easy workaround would be to restart animation on width/height change. It would mess up sliders which are continuously change in size for some weirdly animated UIs, but I've never seen such cases, so should be safe 99% of the time.
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/599
Git commit d202dc7fda5b182528a0da11fa549d86df52a8ba by ivan tkachenko. Committed on 14/09/2022 at 13:17. Pushed by ratijas into branch 'master'. PC3/ProgressBar: Fix sizing bugs, reformat code, remove animation hacks This patch makes implementation both simpler and more robust at once. Parts of sizing expressions were copied from the Slider component, but adjusted for horizontal-only and legally-zero-progress usecase. Fixed potentially undefined properties access for `fixedMargins` in Item context (a bug which is not reproducible with any of the stock themes, as they all provide size hints in their SVG). Finally, the indeterminate animation was rewritten almost from scratch, so now an SVG item is properly animated from side to side, without going out of bound nor being unable to hit the farmost position. And it even handles mid-flight control resizing pretty well! PS That `children[0].height` is a bit of an iffy hack. But introducing id to the inner component would prevent engine from optimizing the whole tree away when the background property is overridden. And using `childrenRect.height` results in binding loops because childrenRect (being a grouped property) updates for any geometry change. Ideally, I would factor it all out in a private/DefaultProgressBarBackground.qml, so that we could straight use an id, and don't worry about missing an optimization opportunity. M +47 -40 src/declarativeimports/plasmacomponents3/ProgressBar.qml https://invent.kde.org/frameworks/plasma-framework/commit/d202dc7fda5b182528a0da11fa549d86df52a8ba