Re: [dwm] max_and_focus.patch regression

From: Sander van Dijk <a.h.vandijk_AT_gmail.com>
Date: Mon, 4 Sep 2006 17:34:33 +0200

On 9/4/06, Anselm R. Garbe <arg_AT_10kloc.org> wrote:
> On Mon, Sep 04, 2006 at 05:18:17PM +0200, Sander van Dijk wrote:
> > if(isvisible(c)) {
> > focus(NULL);
> > sel = c;
> > }
> >
> > for instance, or by manually grabbing the right buttons for the old
> > focused client. Not sure what the right way is (calling focus on c
> > itself at that point is probably not an option, since that would
> > incorrectly map its twin afterwards).
>
> Your last remark seems best for now.
>
> Included in dwm-1.3.

Maybe it's even better to first ban the new client, than map it's
windows, than focus it and then call arrange(). My guess is that would
be cleaner

ban(c);
if(isvisible(c))
    focus(c);
mapstuff;
arrange();

Gr. Sander.
Received on Mon Sep 04 2006 - 17:34:38 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:30:52 UTC