diff --git a/src/tabbox/tabbox.cpp b/src/tabbox/tabbox.cpp index 2420eb743e..609d154b04 100644 --- a/src/tabbox/tabbox.cpp +++ b/src/tabbox/tabbox.cpp @@ -889,6 +889,13 @@ bool TabBox::startKDEWalkThroughWindows(TabBoxMode mode) m_noModifierGrab = false; setMode(mode); reset(); + + // Show the switcher only when there are two or more clients. + if (m_tabBox->clientList().size() <= 1) { + close(); + return false; + } + return true; }