skip selftabbing requests from the deco
causes assert BUG: 319107 FIXED-IN: 4.10.3 REVIEW: 110251
This commit is contained in:
parent
4794cce5e5
commit
782fbd0de6
1 changed files with 2 additions and 0 deletions
|
@ -313,6 +313,7 @@ void Bridge::tab_A_before_B(long A, long B)
|
|||
|
||||
if (Client *a = clientForId(A))
|
||||
if (Client *b = clientForId(B))
|
||||
if (a != b)
|
||||
a->tabBefore(b, true);
|
||||
}
|
||||
|
||||
|
@ -328,6 +329,7 @@ void Bridge::tab_A_behind_B(long A, long B)
|
|||
|
||||
if (Client *a = clientForId(A))
|
||||
if (Client *b = clientForId(B))
|
||||
if (a != b)
|
||||
a->tabBehind(b, true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue