[Vm-dev] [commit] r2557 - change the X11 graphics context's subwindow_mode from IncludeInferiors to

commits at squeakvm.org commits at squeakvm.org
Sat Jun 9 21:33:26 UTC 2012


Author: eliot
Date: 2012-06-09 14:33:25 -0700 (Sat, 09 Jun 2012)
New Revision: 2557

Modified:
   branches/Cog/platforms/unix/vm-display-X11/sqUnixX11.c
   branches/Cog/scripts/uploadvms
Log:
change the X11 graphics context's subwindow_mode from IncludeInferiors to
ClipChildren as per http://code.google.com/p/cog/issues/detail?id=84.


Modified: branches/Cog/platforms/unix/vm-display-X11/sqUnixX11.c
===================================================================
--- branches/Cog/platforms/unix/vm-display-X11/sqUnixX11.c	2012-06-07 19:29:52 UTC (rev 2556)
+++ branches/Cog/platforms/unix/vm-display-X11/sqUnixX11.c	2012-06-09 21:33:25 UTC (rev 2557)
@@ -4402,7 +4402,7 @@
 
     gcValues.function= GXcopy;
     gcValues.line_width= 0;
-    gcValues.subwindow_mode= IncludeInferiors;
+    gcValues.subwindow_mode= ClipChildren; /* was IncludeInferiors */
     gcValues.clip_x_origin= 0;
     gcValues.clip_y_origin= 0;
     gcValues.clip_mask= None;

Modified: branches/Cog/scripts/uploadvms
===================================================================
--- branches/Cog/scripts/uploadvms	2012-06-07 19:29:52 UTC (rev 2556)
+++ branches/Cog/scripts/uploadvms	2012-06-09 21:33:25 UTC (rev 2557)
@@ -47,7 +47,7 @@
 				CheckDMG=1;;
 		-w)		ARCHIVES="$ARCHIVES	cogwin.tgz	cogmtwin.zip	nsvm-$TAG.msi"
 				CheckMSI=1;;
-		-?|-h)  echo usage: $0 [-l -m -w -cl -cm -cw -ctl -ctm -ctw -nl -nm -nw]; exit 0;;
+		-?|-h)  echo usage: $0 [-r REV -l -m -w -c -n -cl -cm -cw -ctl -ctm -ctw -nl -nm -nw]; exit 0;;
 		*)	break
 		esac
 		shift



More information about the Vm-dev mailing list