The place you want is at the bottom of main in fvwm.c
just before calling HandleEvents() you want to insert
fFvwmInStartup = False;
On Thu, 3 Dec 1998, Brian Schroeder wrote:
> Brad Giaccio wrote:
> > 
> > On Wed, 2 Dec 1998, Brian Schroeder wrote:
> > 
> > > 3. In my .fvwm2rc file I have the following:
> > >
> > > Mouse 0 2       N       Maximize-Func
> > > Mouse 0 2       C       Maximize 100 0
> > > Mouse 0 2       S       Maximize 75 75
> > > Mouse 0 2       M       Maximize 0 100
> > >
> > >    This allows me to maximize a window in either the horizontal or the
> > >    vertical direction by using the control or meta keys in conjunction
> > >    with the mouse.  It worked fine in version 2.0.x, but the control, shift
> > >    and meta key combinations no longer work in 2.1.x.  Why?
> > >
> > >
> > 
> > I believe this has to do with a click time bug we found right after the
> > release this one line fix in fvwm/fvwm.c should fix it.
> > 
> > --- fvwm/fvwm/fvwm.c    1998/11/30 10:34:04     1.16
> > +++ fvwm/fvwm/fvwm.c    1998/11/30 19:43:28     1.17
> > _at_@ -474,6 +474,7 @@
> >    /* Make sure we have the correct click time now. */
> >    if (Scr.ClickTime < 0)
> >      Scr.ClickTime = -Scr.ClickTime;
> > +  fFvwmInStartup = False;
> >    DBUG("main","Entering HandleEvents loop...");
> >    HandleEvents();
> >    DBUG("main","Back from HandleEvents loop?  Exitting...");
> 
> Thankyou, but I'm afraid that code doesn't seem to match the file I have:
> fvwm-2.1.2 : fvwm/fvwm.c.
> 
> Line 474... is:
> 
> ** StartupStuff
> **
> ** Does initial window captures and runs init/restart function
> */
> void StartupStuff(void)
> 
> 
> Looking for "if (Scr.ClickTime < 0)", I found it in the following
> context (starting line 499):
> 
> }
>   if (Scr.ClickTime < 0)
>     Scr.ClickTime = -Scr.ClickTime;
> } /* StartupStuff */
> 
> 
> 
> Brian
> 
-- 
--- There are two kinds of knowledge, you either know the answer or
			you know where to find it
		      -Kane, Johnson, and anonymous
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Thu Dec 03 1998 - 06:39:49 GMT