19 lines
621 B
Text
19 lines
621 B
Text
$NetBSD: patch-aa,v 1.4 2002/10/20 12:59:08 wiz Exp $
|
|
|
|
--- lib3d/gfxtarget.h.orig Fri Sep 3 04:25:19 1999
|
|
+++ lib3d/gfxtarget.h
|
|
@@ -72,7 +72,14 @@ struct gfxTarget {
|
|
XFillRectangle(disp,win,gc,(int)p.x,(int)p.y,(int)sz.x,(int)sz.y);
|
|
}
|
|
void ResizeWindow(const pt2d& sz) {
|
|
+ #if 0
|
|
+ /* This produces wierd artifacts on my systems--creeping windows,
|
|
+ and "oscillating" windows--NetBSD-1.4.1 and NetBSD-1.4P with
|
|
+ include X, also with PC Xserver.
|
|
+ --F. Bruckman <fb@enteract.com>,<fredb@netbsd.org>
|
|
+ */
|
|
XResizeWindow(disp,win,(int)sz.x,(int)sz.y);
|
|
+ #endif
|
|
HandleResize();
|
|
}
|
|
|