Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
using a global stack for focus recovery on arrange() - seems to work great
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
586a87f
..
3578beb
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-10,6
+10,14
@@
/* static functions */
/* static functions */
+static void
+detachstack(Client *c)
+{
+ Client **tc;
+ for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext);
+ *tc = c->snext;
+}
+
static void
grabbuttons(Client *c, Bool focus)
{
static void
grabbuttons(Client *c, Bool focus)
{
@@
-99,6
+107,9
@@
focus(Client *c)
}
}
if(c) {
}
}
if(c) {
+ detachstack(c);
+ c->snext = stack;
+ stack = c;
grabbuttons(c, True);
drawtitle(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
grabbuttons(c, True);
drawtitle(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
@@
-198,7
+209,6
@@
killclient(Arg *arg)
void
manage(Window w, XWindowAttributes *wa)
{
void
manage(Window w, XWindowAttributes *wa)
{
- unsigned int i;
Client *c;
Window trans;
XSetWindowAttributes twa;
Client *c;
Window trans;
XSetWindowAttributes twa;
@@
-247,7
+257,8
@@
manage(Window w, XWindowAttributes *wa)
if(clients)
clients->prev = c;
c->next = clients;
if(clients)
clients->prev = c;
c->next = clients;
- clients = c;
+ c->snext = stack;
+ stack = clients = c;
settitle(c);
ban(c);
settitle(c);
ban(c);
@@
-421,6
+432,7
@@
unmanage(Client *c)
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
XDestroyWindow(dpy, c->twin);
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
XDestroyWindow(dpy, c->twin);
+ detachstack(c);
free(c->tags);
free(c);
free(c->tags);
free(c);