skip selftabbing requests from the deco
causes assert BUG: 319107 FIXED-IN: 4.10.3 REVIEW: 110251 (cherry picked from commit fd0f9525df26a96d828e3e0717617039c9c991b2)
This commit is contained in:
parent
42aed44e99
commit
135d5bebfb
1 changed files with 2 additions and 0 deletions
|
@ -315,6 +315,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);
|
||||
}
|
||||
|
||||
|
@ -330,6 +331,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