Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Workspace
Commits
85bfb4fb
Commit
85bfb4fb
authored
Oct 13, 2020
by
Kai Uwe Broulik
🍇
Browse files
[Service Runner] Skip SystemSettings jump list actions
We already find KCMs explicitly
parent
c99285be
Changes
1
Hide whitespace changes
Inline
Side-by-side
runners/services/servicerunner.cpp
View file @
85bfb4fb
...
...
@@ -358,6 +358,11 @@ private:
continue
;
}
// Skip SystemSettings as we find KCMs already
if
(
service
->
storageId
()
==
QLatin1String
(
"systemsettings.desktop"
))
{
continue
;
}
const
auto
actions
=
service
->
actions
();
for
(
const
KServiceAction
&
action
:
actions
)
{
if
(
action
.
text
().
isEmpty
()
||
action
.
exec
().
isEmpty
()
||
hasSeen
(
action
))
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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