[hackers] [dwm] reverted Peters patch to tile, I will discuss the reasons at dwm@

From: Anselm R. Garbe <garbeam_AT_gmail.com>
Date: Mon Oct 01 21:30:16 2007

changeset: 1023:f6b71fb9ea39
tag: tip
user: Anselm R. Garbe <garbeam_AT_gmail.com>
date: Mon Oct 01 21:25:15 2007 +0200
summary: reverted Peters patch to tile, I will discuss the reasons at dwm@

diff -r e50432b2ba5f -r f6b71fb9ea39 dwm.c
--- a/dwm.c Mon Oct 01 15:39:37 2007 +0200
+++ b/dwm.c Mon Oct 01 21:25:15 2007 +0200
@@ -646,11 +646,8 @@ enternotify(XEvent *e) {
 
         if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
                 return;
- if((c = getclient(ev->window))) {
+ if((c = getclient(ev->window)))
                 focus(c);
- if(ISTILE && !c->isfloating)
- restack();
- }
         else if(ev->window == root) {
                 selscreen = True;
                 focus(NULL);
@@ -1595,7 +1592,7 @@ tile(void) {
                 else { /* tile window */
                         if(i == 1) {
                                 ny = way;
- nx += mc->w + mc->border;
+ nx += mc->w + 2 * mc->border;
                                 nw = waw - nx - 2 * c->border;
                         }
                         if(i + 1 == n) /* remainder */
@@ -1605,7 +1602,7 @@ tile(void) {
                 }
                 resize(c, nx, ny, nw, nh, RESIZEHINTS);
                 if(n > 1 && th != wah)
- ny = c->y + c->h + c->border;
+ ny = c->y + c->h + 2 * c->border;
         }
 }
 
Received on Mon Oct 01 2007 - 21:30:16 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 15:58:25 UTC