Adding zoomswap patch (pertag compatible)
This commit is contained in:
13
patch/zoomswap.c
Normal file
13
patch/zoomswap.c
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
#if !PERTAG_PATCH
|
||||
static Client *prevzoom = NULL;
|
||||
#endif // PERTAG_PATCH
|
||||
|
||||
Client *
|
||||
prevtiled(Client *c) {
|
||||
Client *p;
|
||||
if (!c || c == c->mon->clients)
|
||||
return NULL;
|
||||
for (p = c->mon->clients; p && p->next != c; p = p->next);
|
||||
return p;
|
||||
}
|
Reference in New Issue
Block a user