Japanese translation of message catalog for Sawfish Window-Manager
Revision | c05881df3e5a947adcef4df51abe917017270cf5 (tree) |
---|---|
Time | 1999-07-29 01:12:11 |
Author | john <john> |
Commiter | john |
select VisibiltyChangeMask on the client window not the frame, the
frame was always PartiallyObscured (by the client?)
@@ -173,8 +173,8 @@ install_window_frame (Lisp_Window *w) | ||
173 | 173 | ButtonPressMask | ButtonReleaseMask |
174 | 174 | | KeyPressMask | ButtonMotionMask | PointerMotionHintMask |
175 | 175 | | EnterWindowMask | LeaveWindowMask |
176 | - | ExposureMask | VisibilityChangeMask | |
177 | - | FocusChangeMask | SubstructureRedirectMask); | |
176 | + | ExposureMask | FocusChangeMask | |
177 | + | SubstructureRedirectMask); | |
178 | 178 | |
179 | 179 | XReparentWindow (dpy, w->id, w->frame, -w->frame_x, -w->frame_y); |
180 | 180 | w->reparented = TRUE; |
@@ -230,7 +230,7 @@ add_window (Window id) | ||
230 | 230 | /* ..now do the X11 stuff */ |
231 | 231 | |
232 | 232 | XSelectInput (dpy, id, PropertyChangeMask | StructureNotifyMask |
233 | - | ColormapChangeMask); | |
233 | + | ColormapChangeMask | VisibilityChangeMask); | |
234 | 234 | XGetWindowAttributes (dpy, id, &w->attr); |
235 | 235 | DB((" orig: width=%d height=%d x=%d y=%d\n", |
236 | 236 | w->attr.width, w->attr.height, w->attr.x, w->attr.y)); |
@@ -440,8 +440,6 @@ window-frame WINDOW FRAME | ||
440 | 440 | ::end:: */ |
441 | 441 | { |
442 | 442 | rep_DECLARE1(win, WINDOWP); |
443 | - if (frame != Qnil) | |
444 | - rep_DECLARE2(frame, FRAMEP); | |
445 | 443 | Fgrab_server (); |
446 | 444 | if (VWIN(win)->frame != 0) |
447 | 445 | { |