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:
parent
9a15d1921f
commit
6e70ed2087
1 changed files with 1 additions and 0 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue