Skip to content

Commit

Permalink
Add a temporary workaround for overlapping indicator and text in lists
Browse files Browse the repository at this point in the history
  • Loading branch information
10110111 committed Nov 4, 2023
1 parent dbf8e3e commit 491461b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions data/gui/normalStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -409,15 +409,22 @@ QCheckBox:disabled {
}

QCheckBox::indicator,
QListWidget::indicator,
QListView::indicator,
QGroupBox::indicator {
width: 16px;
height: 16px;
margin: 0;
background: none;
}

/* FIXME: these should configured the same way as QCheckBox and QGroupBox
* indicators, but there's a problem with spacing discussed at
* https://stackoverflow.com/q/77422984 */
QListWidget::indicator,
QListView::indicator {
margin: 0;
background: none;
}

QCheckBox::indicator:checked,
QListWidget::indicator:checked,
QListView::indicator:checked,
Expand Down

0 comments on commit 491461b

Please sign in to comment.