Add autoResume to pausemusic_config.qml

This commit is contained in:
Tony Sesek 2021-07-02 04:05:18 +00:00
parent 0d2a15c41f
commit 89e7c36158

View file

@ -24,6 +24,7 @@ Kirigami.FormLayout {
talking.checked = config.get("conditionTalking", false)
mute.checked = config.get("actionMute", false)
pause.checked = config.get("actionPause", true)
resume.checked = config.get("actionResume", true)
}
RadioButton {
@ -49,4 +50,10 @@ Kirigami.FormLayout {
onClicked: config.set("actionMute", checked)
}
CheckBox {
id: resume
text: i18n("Resume automatically when call ends")
onClicked: config.set("actionResume", checked)
}
}