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:
Thomas Lübking 2013-04-30 20:37:29 +02:00
parent 42aed44e99
commit 135d5bebfb

View file

@ -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);
}