Problem
PR #945 (shipped in #947) aligned the `title` attribute with the `aria-label` for three QueueItem buttons (Retry-without-Wrapper, Open File, Open Folder) so sighted hover-tooltips and screen-reader announcements match.
Two sibling buttons in the same file were missed:
Fix
Two-line edit:
```tsx
// 617
title="Cancel download"
// 633
title="Retry download"
```
If aria-label is missing on these two, add it with the same string. Mirrors the #945 pattern.
Verification
- Existing `QueueItem.test.tsx` passes unchanged.
- VoiceOver / NVDA tab through Queue items — Cancel + Retry now announced with the full "…download" suffix.
Problem
PR #945 (shipped in #947) aligned the `title` attribute with the `aria-label` for three QueueItem buttons (Retry-without-Wrapper, Open File, Open Folder) so sighted hover-tooltips and screen-reader announcements match.
Two sibling buttons in the same file were missed:
Fix
Two-line edit:
```tsx
// 617
title="Cancel download"
// 633
title="Retry download"
```
If aria-label is missing on these two, add it with the same string. Mirrors the #945 pattern.
Verification