This commit is contained in:
ItsLemmy
2025-11-22 16:50:09 -05:00
parent e108a3b45b
commit 1ff64efc64
2 changed files with 10 additions and 6 deletions
@@ -368,7 +368,9 @@ ColumnLayout {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
root.updateEntry(index, { "enabled": !modelData.enabled });
root.updateEntry(index, {
"enabled": !modelData.enabled
});
}
}
}
@@ -397,7 +399,9 @@ ColumnLayout {
NToggle {
checked: modelData.countdownEnabled !== undefined ? modelData.countdownEnabled : true
onToggled: function (checked) {
root.updateEntry(delegateItem.index, { "countdownEnabled": checked });
root.updateEntry(delegateItem.index, {
"countdownEnabled": checked
});
}
}
}
@@ -447,4 +451,4 @@ ColumnLayout {
}
}
}
}
}