projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bedbe59
)
fixed an issue in Peter's patch (it is no good idea to restack() all clients on enter...
author
Anselm R. Garbe
<garbeam@gmail.com>
Sun, 30 Sep 2007 16:33:05 +0000
(18:33 +0200)
committer
Anselm R. Garbe
<garbeam@gmail.com>
Sun, 30 Sep 2007 16:33:05 +0000
(18:33 +0200)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index 5aa71b7cdd155aec6fe0784f3a8ba1afbfa7e720..c4a705d0419af7cfa20a116d1b646adfaa7553ef 100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-648,7
+648,8
@@
enternotify(XEvent *e) {
return;
if((c = getclient(ev->window))) {
focus(c);
- restack();
+ if(ISTILE && !c->isfloating)
+ restack();
}
else if(ev->window == root) {
selscreen = True;