]> Dogcows Code - chaz/openbox/commitdiff
specify projecting cap style
authorDana Jansens <danakj@orodu.net>
Mon, 20 Jan 2003 17:07:42 +0000 (17:07 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 20 Jan 2003 17:07:42 +0000 (17:07 +0000)
otk/rendercolor.cc

index 99dd3341bd25c606416e6c5e5f189bb780712bd1..1a95ded992c8063f5beb286271a6973695d81317 100644 (file)
@@ -57,7 +57,9 @@ RenderColor::RenderColor(int screen, unsigned char red,
     }
 
     gcv.foreground = xcol.pixel;
-    _gc = XCreateGC(**display, info->rootWindow(), GCForeground, &gcv);
+    gcv.cap_style = CapProjecting;
+    _gc = XCreateGC(**display, info->rootWindow(),
+                   GCForeground | GCCapStyle, &gcv);
     assert(_gc);
 
     // insert into the cache
This page took 0.021974 seconds and 4 git commands to generate.