FVWM: **Corrected** Enhancment request to fix problem when modifying the TransientForHint

From: Duane Guingrich <duane_at_mindweb.net>
Date: Fri, 30 Oct 1998 03:34:57 -0500

My code fragment was too short. I missed the closing bracket
and 'break;' statement when I cut and pasted the code.

The following code should be inserted before the default
case in the function HandlePropertyNotify() in the file
events.c.

----------------------- Begin Insert ---------------------------
    case XA_WM_TRANSIENT_FOR:
      {
        if(XGetTransientForHint(dpy, Tmp_win->w,
&Tmp_win>transientfor))
        {
           Tmp_win->flags |= TRANSIENT;
           RaiseWindow(Tmp_win);
        }
        else
        {
           Tmp_win->flags &= ~TRANSIENT;
        }
      }
      break;
-------------------- End Insert -----------------------------

--
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 Fri Oct 30 1998 - 02:34:00 GMT

This archive was generated by hypermail 2.3.0 : Mon Aug 29 2016 - 19:38:01 BST