formatting, add an assert
This commit is contained in:
parent
51cc41e4db
commit
0dfff40a30
1 changed files with 6 additions and 3 deletions
|
@ -845,7 +845,8 @@ void client_update_transient_for(ObClient *self)
|
||||||
group */
|
group */
|
||||||
if (t == self->group->leader ||
|
if (t == self->group->leader ||
|
||||||
t == None ||
|
t == None ||
|
||||||
t == RootWindow(ob_display, ob_screen)) {
|
t == RootWindow(ob_display, ob_screen))
|
||||||
|
{
|
||||||
/* window is a transient for its group! */
|
/* window is a transient for its group! */
|
||||||
target = OB_TRAN_GROUP;
|
target = OB_TRAN_GROUP;
|
||||||
}
|
}
|
||||||
|
@ -2814,6 +2815,8 @@ ObClient *client_search_top_transient(ObClient *self)
|
||||||
} else {
|
} else {
|
||||||
GSList *it;
|
GSList *it;
|
||||||
|
|
||||||
|
g_assert(self->group);
|
||||||
|
|
||||||
for (it = self->group->members; it; it = it->next) {
|
for (it = self->group->members; it; it = it->next) {
|
||||||
ObClient *c = it->data;
|
ObClient *c = it->data;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue