[Bug]: Checkboxes are not displaying checkmarks #24
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#24
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.1
Platform
Both
Steps to reproduce
Expected behavior
Checkmark to appear and disappear when option is enabled or disabled
Actual behavior
option toggles but no checkbox appears. Options that are true on load still have no graphical indicator in the box
Additional context
No response
Triage
Confirmed bug (
Reviewed/Confirmed). Checkboxes toggle state correctly but the checked indicator is invisible on standard and high-DPI displays.Root cause: Checkbox checkmarks were painted via
QCheckBox::indicator:checked { image: url(...) }in the application stylesheet (PNG generated at a fixed 15×15 size). Qt does not reliably load/scale those indicator images—especially at device pixel ratios > 1—so the box renders without a checkmark even whenisChecked()is true.Fix (branch
0.1.1/issue-24-checkbox-checkmarks)ThemedProxyStyle, which paints checkbox indicators viaQPainter(vector strokes) using theme colors.QApplication.setStyleSheet()so Qt keeps checkbox painting on the proxy while panel/splitter rules remain in QSS.Version: 0.1.2
Please verify on your displays (especially 125%/150% Windows scaling or fractional Linux scaling) and let me know if this can be closed.
Confirmed corrected on both OSs
Fix confirmed by reporter. Closing as resolved.
Delivered in PR #30 (
0.1.1/issue-24-checkbox-checkmarks→main, version 0.1.2). Checkbox indicators now paint checkmarks viaThemedProxyStyleinstead of QSS indicator images, which restores visible checked state on high-DPI displays.