Bug 456550 - Ping-pong 'progress' bar does not move to rightmost position
Summary: Ping-pong 'progress' bar does not move to rightmost position
Status: RESOLVED FIXED
Alias: None
Product: libplasma
Classification: Frameworks and Libraries
Component: components (show other bugs)
Version: unspecified
Platform: Neon Linux
: NOR normal
Target Milestone: ---
Assignee: ratijas
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-07-10 14:12 UTC by Patrick Silva
Modified: 2022-09-15 02:34 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed In: 5.99
Sentry Crash Report:


Attachments
screen recording (126.40 KB, video/webm)
2022-07-10 14:12 UTC, Patrick Silva
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Patrick Silva 2022-07-10 14:12:25 UTC
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
Comment 1 Nate Graham 2022-07-13 19:12:22 UTC
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.
Comment 2 Kai Uwe Broulik 2022-09-10 20:49:49 UTC
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.
Comment 3 ratijas 2022-09-11 14:59:32 UTC
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.
Comment 4 Bug Janitor Service 2022-09-12 02:38:28 UTC
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/599
Comment 5 ratijas 2022-09-14 15:42:47 UTC
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