From 98198dc77a86c7d223d8ccf8b98b8d8a045969b4 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 5 May 2023 15:55:17 +0200 Subject: [PATCH] tabbox: fall back to "compact", not "informative" Informative is being deleted in Plasma 6 because it's worse than Compact; see https://invent.kde.org/plasma/plasma-desktop/-/issues/63#note_592077 --- src/tabbox/tabboxhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabbox/tabboxhandler.cpp b/src/tabbox/tabboxhandler.cpp index 876e87f375..e606e0ca3d 100644 --- a/src/tabbox/tabboxhandler.cpp +++ b/src/tabbox/tabboxhandler.cpp @@ -235,7 +235,7 @@ QObject *TabBoxHandlerPrivate::createSwitcherItem() // load default offers = KPackage::PackageLoader::self()->findPackages(type, folderName, [](const KPluginMetaData &data) { - return data.pluginId().compare(QStringLiteral("informative"), Qt::CaseInsensitive) == 0; + return data.pluginId().compare(QStringLiteral("compact"), Qt::CaseInsensitive) == 0; }); if (offers.isEmpty()) { qCDebug(KWIN_TABBOX) << "could not find default window switcher layout";