Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
applied anudots [un]ban repair patch
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
e670cc8
..
06bc9d8
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-1,7
+1,4
@@
-/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
- * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
- * © 2007 Premysl Hruby <dfenze at gmail dot com>
- * See LICENSE file for license details. */
+/* See LICENSE file for copyright and license details. */
#include "dwm.h"
#include <stdlib.h>
#include <string.h>
#include "dwm.h"
#include <stdlib.h>
#include <string.h>
@@
-130,7
+127,7
@@
detach(Client *c) {
void
focus(Client *c) {
void
focus(Client *c) {
- if(
!c && selscreen || c && !isvisible(c
))
+ if(
(!c && selscreen)|| (c && !isvisible(c)
))
for(c = stack; c && !isvisible(c); c = c->snext);
if(sel && sel != c) {
grabbuttons(sel, False);
for(c = stack; c && !isvisible(c); c = c->snext);
if(sel && sel != c) {
grabbuttons(sel, False);
@@
-219,8
+216,7
@@
manage(Window w, XWindowAttributes *wa) {
c->isfloating = (rettrans == Success) || c->isfixed;
attach(c);
attachstack(c);
c->isfloating = (rettrans == Success) || c->isfixed;
attach(c);
attachstack(c);
- c->isbanned = True;
- XMoveWindow(dpy, w, c->x + 2 * sw, c->y);
+ ban(c);
XMapWindow(dpy, w);
setclientstate(c, NormalState);
focus(c);
XMapWindow(dpy, w);
setclientstate(c, NormalState);
focus(c);