[Bug]: Soft Lock After Scan #114
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#114
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.54 Beta
Platform
Windows
Steps to reproduce
Expected behavior
The UI shouldn't lock during the process but if it must, there needs to be something displayed to the user noting what's happening with a progress indicator.
Actual behavior
After the count for "Indexing" is completed and before "Scan Complete" is displayed, an action is locking the UI but not giving the user any feedback that something is happening.
Additional context
No response
Root cause:
_on_deep_finished(main_window.py) runs several synchronous main-thread steps after the scan worker'sfinishedsignal fires — recent-dir bookkeeping, dupe-tag-singleton pruning, and (when the workspace lives on a network share) a silent cache copy — before the status bar updates to "Scan complete." None of that work emitted any progress feedback, so the UI appeared to lock between the end of "Indexing" and the completion message.Fix (branch
0.2.2/issue-114-soft-lock-after-scan): show a "Finalizing scan..." status message with a busy progress indicator as soon as the scan finishes and before this cleanup runs, and route the network-share sync through the existing progress-UI path instead of running it silently. Work continues on the branch; PR tomainpending user request.