i think when styling the `indicator` on a checkbox it loses the checkmark?
January 18, 2020 at 8:46pmi think when styling the `indicator` on a checkbox it loses the checkmark?
January 18, 2020 at 8:46pm (Edited 2 years ago)if i do:
const checkbox = new QCheckBox();checkbox.setObjectName("checkbox");checkbox.setText("checkbox");checkbox.addEventListener("clicked", () => {console.log(checkbox.isChecked());});
while doing:
mainWindow.setStyleSheet(`...#checkbox::indicator {border: 1px solid #bdbdbd;}`);
the checkmark doesnt show:
