Add autoResume to pausemusic_config.qml
This commit is contained in:
parent
0d2a15c41f
commit
89e7c36158
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue