From 6e70ed208738d2302458dfc881e26865e0d36b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 13 Jul 2012 10:13:38 +0200 Subject: [PATCH] Add missing break in case statment This would have resulted in tiling specific code being executed whenever a window tab group would have been closed. REVIEW: 105547 --- useractions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/useractions.cpp b/useractions.cpp index 174e5c57df..817f4626e2 100755 --- a/useractions.cpp +++ b/useractions.cpp @@ -780,6 +780,7 @@ void Workspace::performWindowOperation(Client* c, Options::WindowOperation op) break; case Options::CloseTabGroupOp: c->tabGroup()->closeAll(); + break; case Options::ToggleClientTiledStateOp: { #ifdef KWIN_BUILD_TILING int desktop = c->desktop();