]> Pileus Git - ~andy/gtk/commitdiff
Set graphics_exposures and subwindow_mode, too, even if they aren't
authorTor Lillqvist <tml@iki.fi>
Fri, 6 Jun 2003 22:55:55 +0000 (22:55 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Fri, 6 Jun 2003 22:55:55 +0000 (22:55 +0000)
2003-06-06  Tor Lillqvist  <tml@iki.fi>

* gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
graphics_exposures and subwindow_mode, too, even if they aren't
currently used.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/win32/gdkgc-win32.c

index 5c54474ebbaf5a69d2ff977d48c4249ee10aeab5..cdc2201f26f147c0545d3e347dbb6890ed6047d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-06-06  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
+       graphics_exposures and subwindow_mode, too, even if they aren't
+       currently used.
+
 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Merged from stable.
index 5c54474ebbaf5a69d2ff977d48c4249ee10aeab5..cdc2201f26f147c0545d3e347dbb6890ed6047d9 100644 (file)
@@ -1,3 +1,9 @@
+2003-06-06  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
+       graphics_exposures and subwindow_mode, too, even if they aren't
+       currently used.
+
 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Merged from stable.
index 5c54474ebbaf5a69d2ff977d48c4249ee10aeab5..cdc2201f26f147c0545d3e347dbb6890ed6047d9 100644 (file)
@@ -1,3 +1,9 @@
+2003-06-06  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
+       graphics_exposures and subwindow_mode, too, even if they aren't
+       currently used.
+
 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Merged from stable.
index 5c54474ebbaf5a69d2ff977d48c4249ee10aeab5..cdc2201f26f147c0545d3e347dbb6890ed6047d9 100644 (file)
@@ -1,3 +1,9 @@
+2003-06-06  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
+       graphics_exposures and subwindow_mode, too, even if they aren't
+       currently used.
+
 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Merged from stable.
index 5c54474ebbaf5a69d2ff977d48c4249ee10aeab5..cdc2201f26f147c0545d3e347dbb6890ed6047d9 100644 (file)
@@ -1,3 +1,9 @@
+2003-06-06  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
+       graphics_exposures and subwindow_mode, too, even if they aren't
+       currently used.
+
 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Merged from stable.
index 66b90dfb4f6790f0a7c506996ccbc1638e8bf895..1ead0d071217c244f862160ec65d4c052b587f74 100644 (file)
@@ -454,8 +454,10 @@ _gdk_win32_gc_new (GdkDrawable       *drawable,
   win32_gc->fill_style = GDK_SOLID;
   win32_gc->tile = NULL;
   win32_gc->stipple = NULL;
-  win32_gc->pen_style = PS_GEOMETRIC|PS_ENDCAP_FLAT|PS_JOIN_MITER;
+  win32_gc->subwindow_mode = GDK_CLIP_BY_CHILDREN;
+  win32_gc->graphics_exposures = TRUE;
   win32_gc->pen_width = 0;
+  win32_gc->pen_style = PS_GEOMETRIC|PS_ENDCAP_FLAT|PS_JOIN_MITER;
   win32_gc->pen_dashes = NULL;
   win32_gc->pen_num_dashes = 0;