[hackers] [dwm] minor fix || Anselm R Garbe

From: <hg_AT_suckless.org>
Date: Thu, 2 Jul 2009 13:42:11 +0000 (UTC)

changeset: 1438:9e3da779b59b
tag: tip
user: Anselm R Garbe <garbeam_AT_gmail.com>
date: Thu Jul 02 14:42:06 2009 +0100
files: dwm.c
description:
minor fix

diff -r bb00510a176a -r 9e3da779b59b dwm.c
--- a/dwm.c Wed Jul 01 19:15:20 2009 +0100
+++ b/dwm.c Thu Jul 02 14:42:06 2009 +0100
@@ -1195,7 +1195,7 @@
         for(m = mons; m; m = m->next)
                 if(INRECT(x, y, m->wx, m->wy, m->ww, m->wh))
                         return m;
- return mons;
+ return selmon;
 }
 
 void
@@ -1758,7 +1758,7 @@
 
         /* select focused monitor */
         cleanupmons();
- mons = newmons;
+ selmon = mons = newmons;
         selmon = wintomon(root);
 }
 
@@ -1891,7 +1891,7 @@
                         return m;
         if((c = wintoclient(w)))
                 return c->mon;
- return mons;
+ return selmon;
 }
 
 /* There's no way to check accesses to destroyed windows, thus those cases are
Received on Thu Jul 02 2009 - 13:42:11 UTC

This archive was generated by hypermail 2.2.0 : Thu Jul 02 2009 - 13:48:05 UTC