mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 22:53:09 +00:00
Remove legacy filtering of everything related to settings
This is a remainder from old openSUSE systems, which would show yast modules otherwise. Fixes settings app not shown. Reviewed-by:notmart
This commit is contained in:
parent
8bf2aebd2f
commit
d2fe2bb82b
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ void ApplicationListModel::loadApplications()
|
|||
for(KServiceGroup::List::ConstIterator it = subGroupList.begin();it != subGroupList.end(); it++) {
|
||||
KSycocaEntry::Ptr groupEntry = (*it);
|
||||
|
||||
if (groupEntry->isType(KST_KServiceGroup) && groupEntry->name() != "System/" && groupEntry->name() != "Settingsmenu/") {
|
||||
if (groupEntry->isType(KST_KServiceGroup)) {
|
||||
KServiceGroup::Ptr serviceGroup(static_cast<KServiceGroup* >(groupEntry.data()));
|
||||
|
||||
if (!serviceGroup->noDisplay()) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue