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
This commit is contained in:
Martin Gräßlin 2012-07-13 10:13:38 +02:00
parent 9a15d1921f
commit 6e70ed2087

View file

@ -780,6 +780,7 @@ void Workspace::performWindowOperation(Client* c, Options::WindowOperation op)
break; break;
case Options::CloseTabGroupOp: case Options::CloseTabGroupOp:
c->tabGroup()->closeAll(); c->tabGroup()->closeAll();
break;
case Options::ToggleClientTiledStateOp: { case Options::ToggleClientTiledStateOp: {
#ifdef KWIN_BUILD_TILING #ifdef KWIN_BUILD_TILING
int desktop = c->desktop(); int desktop = c->desktop();