Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KDE Connect
Commits
89e7c361
Commit
89e7c361
authored
Jul 02, 2021
by
Tony Sesek
Browse files
Add autoResume to pausemusic_config.qml
parent
0d2a15c4
Pipeline
#68266
passed with stage
in 4 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/pausemusic/kdeconnect_pausemusic_config.qml
View file @
89e7c361
...
...
@@ -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
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment