Problem
When 'Cancel Selected' is pressed, the transfer is cancelled and list refreshes, but no announcement confirms the action. There's a race condition before _on_transfer_update fires.
Fix
Call _announce(f'Cancelled transfer: {name}') immediately in the cancel handler.
Problem
When 'Cancel Selected' is pressed, the transfer is cancelled and list refreshes, but no announcement confirms the action. There's a race condition before
_on_transfer_updatefires.Fix
Call
_announce(f'Cancelled transfer: {name}')immediately in the cancel handler.