skip selftabbing requests from the deco

causes assert

BUG: 319107
FIXED-IN: 4.10.3
REVIEW: 110251
This commit is contained in:
Thomas Lübking 2013-04-30 20:37:29 +02:00
parent 4794cce5e5
commit 782fbd0de6

View file

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