small window cycling bugs
This commit is contained in:
8
spot.c
8
spot.c
@@ -137,4 +137,12 @@ int spot_count_windows(int spot, int mon)
|
||||
int i, n = 0; client *c;
|
||||
for_windows(i, c) if (c->manage && c->spot == spot && c->monitor == mon) n++;
|
||||
return n;
|
||||
}
|
||||
|
||||
int spot_stack_clients(int spot, int mon, stack *stk)
|
||||
{
|
||||
int i; client *c;
|
||||
for_windows(i, c) if (c->manage && c->spot == spot && c->monitor == mon)
|
||||
client_stack_family(c, stk);
|
||||
return stk->depth;
|
||||
}
|
||||
Reference in New Issue
Block a user