[Bug]: Filmstrip only showing three Images in Dupe Workbench #53
Labels
No labels
Kind/Bug
Kind/Feature
Priority/High
Priority/Medium
Reviewed/Confirmed
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ai-collab/bulk-image-organizer#53
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
App version
0.1.21 - 0.1.25
Platform
Both
Steps to reproduce
Expected behavior
All images from the set that will fit in the filmstrip area at the given filmstrip thumbnail size level are visible
Actual behavior
7 or more images seem to work as expected. 3-6 images have some set of images truncated preventing the group from showing.
Additional context
Fix implemented on branch
0.1.27/issue-53-filmstrip-dupe.Root cause:
filmstrip_visible_window()applied odd-count centering even when every image in the session fit in the strip. For duplicate groups with 4 or 6 images (and some 5-image cases at narrower widths), that centering window started at index 0 but ended before the last group member.Fix:
visible >= total, return the full[0, total)window.visible < total).Regression test added in
tests/test_pr8_viewer.py.Verified by reporter. Closed with PR to
main(branch0.1.27/issue-53-filmstrip-dupe, release 0.1.28).