• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revisionc05881df3e5a947adcef4df51abe917017270cf5 (tree)
Time1999-07-29 01:12:11
Authorjohn <john>
Commiterjohn

Log Message

select VisibiltyChangeMask on the client window not the frame, the
frame was always PartiallyObscured (by the client?)

Change Summary

Incremental Difference

--- a/src/windows.c
+++ b/src/windows.c
@@ -173,8 +173,8 @@ install_window_frame (Lisp_Window *w)
173173 ButtonPressMask | ButtonReleaseMask
174174 | KeyPressMask | ButtonMotionMask | PointerMotionHintMask
175175 | EnterWindowMask | LeaveWindowMask
176- | ExposureMask | VisibilityChangeMask
177- | FocusChangeMask | SubstructureRedirectMask);
176+ | ExposureMask | FocusChangeMask
177+ | SubstructureRedirectMask);
178178
179179 XReparentWindow (dpy, w->id, w->frame, -w->frame_x, -w->frame_y);
180180 w->reparented = TRUE;
@@ -230,7 +230,7 @@ add_window (Window id)
230230 /* ..now do the X11 stuff */
231231
232232 XSelectInput (dpy, id, PropertyChangeMask | StructureNotifyMask
233- | ColormapChangeMask);
233+ | ColormapChangeMask | VisibilityChangeMask);
234234 XGetWindowAttributes (dpy, id, &w->attr);
235235 DB((" orig: width=%d height=%d x=%d y=%d\n",
236236 w->attr.width, w->attr.height, w->attr.x, w->attr.y));
@@ -440,8 +440,6 @@ window-frame WINDOW FRAME
440440 ::end:: */
441441 {
442442 rep_DECLARE1(win, WINDOWP);
443- if (frame != Qnil)
444- rep_DECLARE2(frame, FRAMEP);
445443 Fgrab_server ();
446444 if (VWIN(win)->frame != 0)
447445 {